postgresql/src/interfaces/ecpg
2011-06-19 00:37:30 +03:00
..
compatlib Remove redundant lib*dll.def rules from .gitignore 2011-06-18 18:28:16 +02:00
ecpglib Capitalization fixes 2011-06-19 00:37:30 +03:00
include fix up a couple non-prototypes of the form foo() to be foo(void) -- found using -Wstrict-prototypes 2011-03-27 21:31:41 +01:00
pgtypeslib Remove redundant lib*dll.def rules from .gitignore 2011-06-18 18:28:16 +02:00
preproc Rework parsing of ConstraintAttributeSpec to improve NOT VALID handling. 2011-06-15 19:06:21 -04:00
test Use single quotes in preference to double quotes for protecting pathnames. 2011-06-15 21:45:23 -04:00
Makefile Fix parallel make when running make install before make all 2011-03-08 23:52:29 +02:00
README.dynSQL Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00

src/interfaces/ecpg/README.dynSQL

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.