postgresql/src/interfaces/ecpg
2008-11-15 22:20:55 +00:00
..
compatlib Do not eat memory even in case of an out-of-memory error. 2008-11-01 08:55:21 +00:00
ecpglib Move from strcmp to strncmp to be more tolerant for changes to the parser. 2008-11-01 19:53:35 +00:00
include fix ecpg regression tests broken by over-eager adding of $PostgreSQL$ markers 2008-05-17 02:43:16 +00:00
pgtypeslib Add MSVC++ debug libraries to .cvsignore. 2008-07-17 21:16:23 +00:00
preproc Add missing dependencies to preproc.y build rule 2008-11-15 22:20:55 +00:00
test Updated parser file to the one generated by the latest version of parse.[awk|pl] from the latest version of gram.y 2008-11-13 11:54:39 +00:00
ChangeLog Do not eat memory even in case of an out-of-memory error. 2008-11-01 08:55:21 +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
nls.mk Add additional rules so that make init-po for ecpg gets up to date flex and 2008-09-19 13:08:08 +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.