postgresql/src/interfaces/ecpg
2012-05-31 23:31:41 +03:00
..
compatlib Add gitignore entries for Windows MSVC builds 2011-04-19 20:04:41 +03:00
ecpglib Translation updates 2012-05-31 23:31:41 +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 Pgindent run before 9.1 beta2. 2011-06-09 14:32:50 -04:00
preproc Translation updates 2012-05-31 23:31:41 +03:00
test Do not use the variable name when defining a varchar structure in ecpg. 2012-02-13 15:48:49 +01: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.