postgresql/src/interfaces/ecpg
Tom Lane 0c8b52bf8b interval_out failed to mention 'ago' for negative intervals in SQL and
GERMAN datestyles.  Ancient bug reported by Terry Lee Tucker.
2005-01-11 18:34:01 +00:00
..
compatlib Committed Informix compat bug fix to 7.4 as well. 2004-03-14 12:18:35 +00:00
ecpglib '::' is no longer interpreted as a variable in a prepare statement. 2004-10-05 10:48:45 +00:00
include - Fixed prototype for ECPGprepared_statement to not moan about "const char" 2004-01-28 09:55:53 +00:00
pgtypeslib interval_out failed to mention 'ago' for negative intervals in SQL and 2005-01-11 18:34:01 +00:00
preproc List VALUE as a keyword. 2004-11-10 13:49:17 +00:00
test Supress ecpg thread test if configure didn't enable threads. Fix 2003-12-19 23:29:29 +00:00
ChangeLog Applied all bug fixes from head also to 7.4. Just bugfixes, no new features. 2003-12-17 15:31:51 +00:00
Makefile Fix compilation on Cygwin. 2003-05-22 17:20:44 +00:00
README.dynSQL Added Christof's patches. 2001-11-14 11:11:49 +00:00

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.