postgresql/src/interfaces/ecpg
2003-10-31 14:10:41 +00:00
..
compatlib Applied patch by Dave Cramer to fix several bugs in compatlib. 2003-10-30 10:19:30 +00:00
ecpglib Include -lkrb5 when needed for shlibs depending on libpq. Per report 2003-10-28 21:55:58 +00:00
include Install dummy sqlda.h file since this is needed for compatibility. 2003-10-20 12:54:29 +00:00
pgtypeslib Removed my debug printf() call from numeric.c 2003-10-08 08:28:57 +00:00
preproc If EOF is found inside a string/comment/etc. stop parsing. 2003-10-31 14:10:41 +00:00
test Added missing "commit" in test case. 2003-10-12 15:19:46 +00:00
ChangeLog If EOF is found inside a string/comment/etc. stop parsing. 2003-10-31 14:10:41 +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.