postgresql/src/interfaces/ecpg
Michael Meskes 042badc377 Set connection back to NULL after freeing it.
Patch by Jeevan Ladhe <jeevan.ladhe@enterprisedb.com>
2018-03-12 23:54:29 +01:00
..
compatlib Check for out of memory when allocating sqlca. 2015-06-15 14:22:54 +02:00
ecpglib Translation updates 2018-02-05 12:48:55 -05:00
include Make sure ecpg header files do not have a comment lasting several lines, one of 2016-02-01 13:19:10 +01:00
pgtypeslib Fix typos in comments. 2017-02-06 11:34:28 +02:00
preproc Set connection back to NULL after freeing it. 2018-03-12 23:54:29 +01:00
test Add post-2010 ecpg tests to checktcp. 2017-11-11 14:41:58 -08:00
Makefile Suppress parallel build in interfaces/ecpg/preproc/. 2012-11-28 22:19:46 -05: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.