postgresql/src/interfaces/ecpg
Michael Meskes 0de1068365 Several fixes to array handling in ecpg.
Patches by Ashutosh Bapat <ashutosh.bapat@enterprisedb.com>

Conflicts:
	src/interfaces/ecpg/test/expected/preproc-outofscope.c
2014-04-09 12:04:33 +02:00
..
compatlib Add gitignore entries for Windows MSVC builds 2011-04-19 20:04:41 +03:00
ecpglib Translation updates 2014-02-17 16:57:27 -05: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 Fix handling of wide datetime input/output. 2014-02-17 09:33:37 -05:00
preproc Several fixes to array handling in ecpg. 2014-04-09 12:04:33 +02:00
test Several fixes to array handling in ecpg. 2014-04-09 12:04:33 +02: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.