postgresql/src/interfaces/ecpg
Bruce Momjian a9fad44372 Move find_my_exec() way up into main.c so it is available to the
timezone code and other places.

Remove elog() calls from find_my_exec;  do fprintf(stderr) instead.  We
can then remove the exec.c handling in the makefile because it doesn't
have to be built to suppress elog calls.
2004-05-18 20:18:59 +00:00
..
compatlib Minor adjustments to enable public-domain timezone library to be called 2004-04-30 04:14:06 +00:00
ecpglib - Fixed bug in adjust_informix that treated arrays as simple variables. 2004-05-05 15:03:04 +00:00
include - Argh, just another bug in adjust_informix. 2004-05-10 13:46:06 +00:00
pgtypeslib - Added additional test case. 2004-05-07 13:42:49 +00:00
preproc Move find_my_exec() way up into main.c so it is available to the 2004-05-18 20:18:59 +00:00
test - Added additional test case. 2004-05-07 13:42:49 +00:00
ChangeLog - Argh, just another bug in adjust_informix. 2004-05-10 13:46:06 +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.