postgresql/src/interfaces/ecpg
Michael Meskes bb4cfebd64 In ecpg removed old leftover check for given connection name.
Ever since we introduced real prepared statements this should work for
different connections. The old solution just emulating prepared statements,
though, wasn't able to handle this.

Closes: #6309
2011-12-18 18:45:39 +01:00
..
compatlib Add gitignore entries for Windows MSVC builds 2011-04-19 20:04:41 +03:00
ecpglib Applied another patch by Zoltan to fix memory alignement issues in ecpg's sqlda 2011-12-04 04:43:09 +01: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 In ecpg removed old leftover check for given connection name. 2011-12-18 18:45:39 +01:00
test Adapted expected result for latest change to ecpglib. 2011-07-18 18:56:56 +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.