postgresql/src/interfaces/ecpg
Peter Eisentraut 8c87cc370f Catch all errors in for and while loops in makefiles. Don't ignore any
errors in any commands, including in various clean targets that have so far
been handled inconsistently.  make -i is available to ignore all errors in
a consistent and official way.
2008-03-18 16:24:50 +00:00
..
compatlib Refactor the code that creates the shared library export files to appear 2008-02-26 06:41:24 +00:00
ecpglib Fix unportable usages of tolower(). On signed-char machines, it is necessary 2008-03-01 03:26:35 +00:00
include Fix uninstall target. 2008-02-26 13:48:57 +00:00
pgtypeslib Refactor the code that creates the shared library export files to appear 2008-02-26 06:41:24 +00:00
preproc Fixed bug that caused arrays of varchar to be output with incomplete name. 2008-03-02 10:54:11 +00:00
test Fixed bug that caused arrays of varchar to be output with incomplete name. 2008-03-02 10:54:11 +00:00
ChangeLog Fixed bug that caused arrays of varchar to be output with incomplete name. 2008-03-02 10:54:11 +00:00
Makefile Catch all errors in for and while loops in makefiles. Don't ignore any 2008-03-18 16:24:50 +00:00
README.dynSQL Added Christof's patches. 2001-11-14 11:11:49 +00:00

README.dynSQL

descriptor statements have the following shortcomings

- input descriptors (USING DESCRIPTOR <name>) are not supported
  
  Reason: to fully support dynamic SQL the frontend/backend communication
  	should change to recognize input parameters.
  	Since this is not likely to happen in the near future and you
  	can cover the same functionality with the existing infrastructure
  	(using s[n]printf), I'll leave the work to someone else.