postgresql/doc/src/FAQ
Bruce Momjian 01798a06b9 Add batch mode, make new libpq section:
< * Add a libpq function to support Parse/DescribeStatement capability
< * Add PQescapeIdentifier() to libpq
< * Prevent PQfnumber() from lowercasing unquoted the column name
<
<   PQfnumber() should never have been doing lowercasing, but historically
<   it has so we need a way to prevent it
<
648a642,661
>
>
> libpq
>
> 	o Add a function to support Parse/DescribeStatement capability
> 	o Add PQescapeIdentifier()
> 	o Prevent PQfnumber() from lowercasing unquoted the column name
>
> 	  PQfnumber() should never have been doing lowercasing, but
> 	  historically it has so we need a way to prevent it
>
> 	o Allow query results to be automatically batched to the client
>
> 	  Currently, all query results are transfered to the libpq
> 	  client before libpq makes the results available to the
> 	  application.  This feature would allow the application to make
> 	  use of the first result rows while the rest are transfered, or
> 	  held on the server waiting for them to be requested by libpq.
> 	  One complexity is that a query like SELECT 1/col could error
> 	  out mid-way through the result set.
2005-11-16 16:33:44 +00:00
..
FAQ.html Update FAQ for most recent release as 8.1. 2005-11-05 01:35:18 +00:00
FAQ_brazilian.html Update FAQ URLs. 2005-05-11 16:13:20 +00:00
FAQ_chinese.html Update Chinese FAQ to fix XHTML format. 2005-06-04 03:28:57 +00:00
FAQ_czech.html Update FAQ URLs. 2005-05-11 16:13:20 +00:00
FAQ_DEV.html Add mention of errfinish. 2005-10-27 13:48:14 +00:00
FAQ_farsi.html Update Farsi FAQ. 2005-05-27 22:09:42 +00:00
FAQ_french.html Update FAQ URLs. 2005-05-11 16:13:20 +00:00
FAQ_german.html Update FAQ URLs. 2005-05-11 16:13:20 +00:00
FAQ_hungarian.html Update Hungarian FAQ and add an HTML version. 2005-06-06 16:30:42 +00:00
FAQ_japanese.html Update Japanese FAQ. 2005-10-05 11:50:36 +00:00
FAQ_MINGW.html Update URL for FAQ_MINGW. 2005-09-10 05:21:52 +00:00
FAQ_polish.html Update FAQ URLs. 2005-05-11 16:13:20 +00:00
FAQ_russian.html Update Russian FAQ. 2005-09-28 11:32:49 +00:00
FAQ_turkish.html Here's the patch to fix a lot of markup errors in the HTML FAQs. Doesn't 2005-03-11 21:46:54 +00:00
README Update TODO script sample. 2005-04-18 14:44:04 +00:00
TODO.html Add batch mode, make new libpq section: 2005-11-16 16:33:44 +00:00

The FAQ* files in this directory are the master versions, and the
../../FAQ* text files are created using lynx:

	lynx -force_html -dont_wrap_pre -dump -hiddenlinks=ignore -nolist FAQ*

The TODO.html file in this directory is not the master, but ../../TODO
is.  The conversion is done using txt2html:

	txt2html -m -s 100 -p 100 --xhtml --titlefirst \
		--body_deco ' bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"' \
		--caps_tag '' \
		/pgtop/doc/TODO |
	sed 's;\[\([^]]*\)\];[<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?\1">\1</a>];g' > /pgtop/doc/src/FAQ/TODO.html