postgresql/src/interfaces/ecpg
Tom Lane 4d3456e85d Remove outside-the-scanner references to "yyleng".
It seems the flex developers have decided to change yyleng from int to size_t.
This has already happened in the latest release of OS X, and will start
happening elsewhere once the next release of flex appears.  Rather than trying
to divine how it's declared in any particular build, let's just remove the one
existing not-very-necessary external usage.

Back-patch to all supported branches; not so much because users in the field
are likely to care about building old branches with cutting-edge flex, as
to keep OSX-based buildfarm members from having problems with old branches.
2009-09-08 04:25:00 +00:00
..
compatlib Removed some variables no longer needed. 2009-09-03 09:59:20 +00:00
ecpglib Fixed incorrect memory management. 2009-09-03 10:24:48 +00:00
include Update of install-sh, mkinstalldirs, and associated configury 2009-08-26 22:24:44 +00:00
pgtypeslib Removed some variables no longer needed. 2009-09-03 09:59:20 +00:00
preproc Remove outside-the-scanner references to "yyleng". 2009-09-08 04:25:00 +00:00
test Made sure sqlca is reset for declare cursor in Informix mode as pointed out by 2009-08-14 13:28:22 +00:00
ChangeLog Removed some variables no longer needed. 2009-09-03 09:59:20 +00:00
Makefile Catch all errors in for and while loops in makefiles. Don't ignore any 2008-03-18 16:24:50 +00:00
README.dynSQL More README src cleanups. 2008-03-21 13:23:29 +00:00

$PostgreSQL: pgsql/src/interfaces/ecpg/README.dynSQL,v 1.3 2008/03/21 13:23:28 momjian Exp $

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.