postgresql/src/interfaces/ecpg
Michael Meskes 8eb81949a5 In case the connection magically disappears libecpg only returns an internal
error sqlstate. This change makes it return a correct value..
2010-03-05 13:57:09 +00:00
..
compatlib pgindent run for 9.0 2010-02-26 02:01:40 +00:00
ecpglib In case the connection magically disappears libecpg only returns an internal 2010-03-05 13:57:09 +00:00
include Revert pgindent changes to ecpg include files that are part of ecpg 2010-02-26 17:07:55 +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 pgindent run for 9.0 2010-02-26 02:01:40 +00:00
test In case the connection magically disappears libecpg only returns an internal 2010-03-05 13:57:09 +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.