postgresql/src/interfaces/ecpg
Tom Lane 2e95f1f002 Add "%option warn" to all flex input files that lacked it.
This is recommended in the flex manual, and there seems no good reason
not to use it everywhere.
2011-08-25 13:55:57 -04:00
..
compatlib Remove redundant lib*dll.def rules from .gitignore 2011-06-18 18:28:16 +02:00
ecpglib Made ecpglib write double with a precision of 15 digits. 2011-07-18 16:25:27 +02: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 Add "%option warn" to all flex input files that lacked it. 2011-08-25 13:55:57 -04:00
test Adapted expected result for latest change to ecpglib. 2011-07-18 19:08:27 +02: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.