postgresql/src/interfaces/ecpg
2006-07-11 13:54:25 +00:00
..
compatlib Added some more coverity report patches send in by Joachim Wieland <joe@mcknight.de>. 2006-06-26 09:20:09 +00:00
ecpglib Fixed remaining Coverity bugs. 2006-07-05 10:49:56 +00:00
include Allow each C include file to compile on its own by including any needed 2006-07-11 13:54:25 +00:00
pgtypeslib Added fixed from the coverity report send in by Joachim Wieland <joe@mcknight.de> 2006-06-21 10:24:41 +00:00
preproc Added missing braces to prevent a segfault after usage of an undeclared cursor. 2006-06-26 14:12:02 +00:00
test Moved some free() calls that coverity correctly complains about. 2006-06-25 09:38:40 +00:00
ChangeLog Fixed remaining Coverity bugs. 2006-07-05 10:49:56 +00:00
Makefile Fix compilation on Cygwin. 2003-05-22 17:20:44 +00:00
README.dynSQL Added Christof's patches. 2001-11-14 11:11:49 +00:00

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.