postgresql/src/interfaces/ecpg
2012-03-02 20:51:29 +02:00
..
compatlib Update copyright notices for year 2012. 2012-01-01 18:01:58 -05:00
ecpglib ecpg: Clean up some const usage 2012-03-02 20:51:29 +02:00
include Mark variables as const in pgtypeslib if they only carry a format string. 2011-12-18 19:04:19 +01:00
pgtypeslib Update copyright notices for year 2012. 2012-01-01 18:01:58 -05:00
preproc ecpg: Clean up some const usage 2012-03-02 20:51:29 +02:00
test Make sure all connection paramters are used in call to PQconnectdbParams. 2012-02-18 14:18:16 +01:00
Makefile De-parallelize ecpg build some more. 2011-10-28 15:16:40 -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.