postgresql/src/interfaces/ecpg
2010-02-16 18:41:23 +00:00
..
compatlib Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add out-of-scope cursor support to native mode. 2010-01-26 09:07:32 +00:00
ecpglib Do not check nan values for infinity. Some system are not able to handle this. 2010-02-16 18:41:23 +00:00
include Fixed NaN/Infinity problems in ECPG for float/double/numeric/decimal by making it OS independant. 2010-02-02 16:09:12 +00:00
pgtypeslib Fixed NaN/Infinity problems in ECPG for float/double/numeric/decimal by making it OS independant. 2010-02-02 16:09:12 +00:00
preproc Changed ECPG outofscope handling to always print out statements in the same order 2010-01-29 16:28:13 +00:00
test Do not check nan values for infinity. Some system are not able to handle this. 2010-02-16 18:41:23 +00:00
Makefile Catch all errors in for and while loops in makefiles. Don't ignore any 2008-03-18 16:24:50 +00:00
README.dynSQL More README src cleanups. 2008-03-21 13:23:29 +00:00

$PostgreSQL: pgsql/src/interfaces/ecpg/README.dynSQL,v 1.3 2008/03/21 13:23:28 momjian Exp $

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.