postgresql/src/interfaces/ecpg
2003-05-22 17:20:44 +00:00
..
compatlib Fix compilation on Cygwin. 2003-05-22 17:20:44 +00:00
ecpglib Fix compilation on Cygwin. 2003-05-22 17:20:44 +00:00
include - Added more compatibility functions. 2003-05-14 14:37:36 +00:00
pgtypeslib Fixed incorrect include and another typo. Sorry, the include did not create a warning/error/problem on my machine, so I didn't notice it. 2003-05-16 09:42:56 +00:00
preproc Fixed segfault when detecting undefined cursor. 2003-05-22 17:09:00 +00:00
test ecpg now recognizes named structs/unions. So you don't have to list the whole definition everytime you declare a variable anymore. 2003-05-22 07:58:45 +00:00
ChangeLog ecpg now recognizes named structs/unions. So you don't have to list the whole definition everytime you declare a variable anymore. 2003-05-22 07:58:45 +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.