postgresql/src/interfaces/ecpg
2007-02-27 13:26:50 +00:00
..
compatlib Fixed memory leak bugs found by Martijn Oosterhout. 2006-04-24 09:46:32 +00:00
ecpglib Backported bug fix for #2956. 2007-02-27 13:26:50 +00:00
include - Fixed prototype for ECPGprepared_statement to not moan about "const char" 2004-01-28 09:55:53 +00:00
pgtypeslib Fixed memory leak bugs found by Martijn Oosterhout. 2006-04-24 09:46:32 +00:00
preproc [ Backpatch to 7.4.X.] 2005-10-14 01:50:58 +00:00
test Change \' to '', for SQL standards compliance. Backpatch to 7.3, 7.4, 2006-05-21 19:57:07 +00:00
ChangeLog Applied all bug fixes from head also to 7.4. Just bugfixes, no new features. 2003-12-17 15:31:51 +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.