postgresql/src/interfaces/ecpg
Michael Meskes a5a1506c96 Removed compiler warning due to unneeded unsigned declaration.
Removed regression test that triggers those libc precision bugs on some archs.
2007-01-25 16:45:25 +00:00
..
compatlib Remove remains of old depend target. 2007-01-20 17:16:17 +00:00
ecpglib Removed compiler warning due to unneeded unsigned declaration. 2007-01-25 16:45:25 +00:00
include Fix Makefile problem which prevented installation on VPATH builds. 2006-11-29 21:21:03 +00:00
pgtypeslib Remove remains of old depend target. 2007-01-20 17:16:17 +00:00
preproc Simplified regression handling 2007-01-12 10:00:14 +00:00
test Removed compiler warning due to unneeded unsigned declaration. 2007-01-25 16:45:25 +00:00
ChangeLog Removed compiler warning due to unneeded unsigned declaration. 2007-01-25 16:45:25 +00:00
Makefile Remove remains of old depend target. 2007-01-20 17:16:17 +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.