postgresql/src/interfaces/ecpg
Michael Meskes a05977edd9 - Added missing braces to array parsing.
- Set ecpg version to 3.1.1.
	- Removed that old debugging output that I forgot the last time.
2004-02-15 13:48:54 +00:00
..
compatlib Repair missing inclusions of -lintl for shared libraries. 2004-02-10 07:26:25 +00:00
ecpglib Repair missing inclusions of -lintl for shared libraries. 2004-02-10 07:26:25 +00:00
include - Issue a warning if a cursor is declared but not opened. 2004-01-28 09:52:14 +00:00
pgtypeslib Repair problem identified by Olivier Prenant: ALTER DATABASE SET search_path 2004-01-19 19:04:40 +00:00
preproc - Added missing braces to array parsing. 2004-02-15 13:48:54 +00:00
test Fix ecpg test program to properly access int* null indicator. 2004-01-13 01:32:52 +00:00
ChangeLog - Added missing braces to array parsing. 2004-02-15 13:48:54 +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.