postgresql/src/interfaces/ecpg
Tom Lane cab9437a43 Arrange to compile flex output files as inclusions into other files
(usually bison output files), not as standalone files.  This hack
works around flex's insistence on including <stdio.h> before we are
able to include postgres.h; postgres.h will already be read before
the compiler starts to read the flex output file.  Needed for largefile
support on some platforms.
2002-11-01 22:52:34 +00:00
..
include Add guards against double inclusion. 2002-10-21 18:53:20 +00:00
lib Add guards against double inclusion. 2002-10-21 18:53:20 +00:00
preproc Arrange to compile flex output files as inclusions into other files 2002-11-01 22:52:34 +00:00
test Include stdio.h and stdlib.h for completeness. 2002-04-21 19:51:44 +00:00
ChangeLog Merged ecpg_big_bison back into HEAD 2002-10-21 13:09:31 +00:00
Makefile Ensure that ecpg/test is cleaned by higher-level 'make clean'. 2002-01-14 17:49:56 +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.