postgresql/src/interfaces/ecpg
2016-08-01 15:08:36 +02:00
..
compatlib Check for out of memory when allocating sqlca. 2015-06-15 14:23:21 +02:00
ecpglib Fixed array checking code for "unsigned long long" datatypes in libecpg. 2016-08-01 15:08:36 +02:00
include Make sure ecpg header files do not have a comment lasting several lines, one of 2016-02-01 13:19:43 +01:00
pgtypeslib Rename strtoi() to strtoint(). 2016-04-23 16:53:15 -04:00
preproc Translation updates 2016-02-08 14:50:20 -05:00
test Make pqsignal() available to pg_regress of ECPG and isolation suites. 2014-06-14 10:57:02 -04:00
Makefile Use .NOTPARALLEL in ecpg/Makefile to avoid a gmake parallelism bug. 2012-09-09 15:09:11 -04: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.