postgresql/src/interfaces/ecpg
2003-06-17 07:28:22 +00:00
..
compatlib - Enable FETCH without INTO. 2003-06-13 10:50:58 +00:00
ecpglib Fixed several more parsing bugs. 2003-06-17 07:28:22 +00:00
include Some minor changes for new version numbering. 2003-06-15 11:10:09 +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 several more parsing bugs. 2003-06-17 07:28:22 +00:00
test - Enable FETCH without INTO. 2003-06-13 10:50:58 +00:00
ChangeLog Fixed several more parsing bugs. 2003-06-17 07:28:22 +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.