postgresql/src/interfaces/ecpg
Tom Lane 9f1fc1080e Since we're depending on %option noyywrap in the main scanner now,
we may as well use it in all our flex files.  Make all the flex files
have a consistent set of options.
2002-07-30 16:33:08 +00:00
..
include Change made to elog: 2002-03-06 06:10:59 +00:00
lib Synced parser yet again. 2002-07-20 08:24:18 +00:00
preproc Since we're depending on %option noyywrap in the main scanner now, 2002-07-30 16:33:08 +00:00
test Include stdio.h and stdlib.h for completeness. 2002-04-21 19:51:44 +00:00
ChangeLog Synced parser yet again. 2002-07-20 08:24:18 +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.