postgresql/src/interfaces/ecpg
Michael Meskes 22c0b1f0f4 - Fixed order mismatch in processing "using" arguments.
- Fixed some minor things in test cases.
- Use defines for Informix error codes.
2003-09-22 13:19:39 +00:00
..
compatlib - Fixed order mismatch in processing "using" arguments. 2003-09-22 13:19:39 +00:00
ecpglib - Applied some bug fixing patches by Dave Cramer <dave@fastcrypt.com>. 2003-09-20 09:10:09 +00:00
include - Fixed order mismatch in processing "using" arguments. 2003-09-22 13:19:39 +00:00
pgtypeslib Fix some ill-considered ifdefs, per report from Hans-JÏrgen SchÎnig. 2003-09-21 17:42:22 +00:00
preproc - Fixed order mismatch in processing "using" arguments. 2003-09-22 13:19:39 +00:00
test - Fixed order mismatch in processing "using" arguments. 2003-09-22 13:19:39 +00:00
ChangeLog - Fixed order mismatch in processing "using" arguments. 2003-09-22 13:19:39 +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.