postgresql/src/interfaces/ecpg
Michael Meskes 32e6331958 Fixed array handling in ecpg.
When ecpg was rewritten to the new protocol version not all variable types
were corrected. This patch rewrites the code for these types to fix that. It
also fixes the documentation to correctly tell the status of array handling.
2015-02-11 11:27:21 +01:00
..
compatlib Add gitignore entries for Windows MSVC builds 2011-04-19 20:04:41 +03:00
ecpglib Fixed array handling in ecpg. 2015-02-11 11:27:21 +01:00
include Remove tabs after spaces in C comments 2014-05-06 11:26:26 -04:00
pgtypeslib Support timezone abbreviations that sometimes change. 2014-10-16 15:22:23 -04:00
preproc Revert "Fix bogus %name-prefix option syntax in all our Bison files." 2014-05-28 19:29:29 -04: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.