postgresql/src/interfaces/ecpg
Peter Eisentraut f493532724 Translation updates
Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: 93d2eb7f662bb15429730cecaaa4280298a4c50b
2017-08-28 10:07:56 -04:00
..
compatlib Check for out of memory when allocating sqlca. 2015-06-15 14:23:07 +02:00
ecpglib Translation updates 2017-08-28 10:07:56 -04:00
include Make sure ecpg header files do not have a comment lasting several lines, one of 2016-02-01 13:19:34 +01:00
pgtypeslib Fix typos in comments. 2017-02-06 11:34:32 +02:00
preproc Translation updates 2017-08-28 10:07:56 -04:00
test Make pqsignal() available to pg_regress of ECPG and isolation suites. 2014-06-14 10:52:25 -04:00
Makefile Use .NOTPARALLEL in ecpg/Makefile to avoid a gmake parallelism bug. 2012-09-09 15:09:04 -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.