postgresql/src/interfaces/ecpg
2010-01-05 17:04:18 +00:00
..
compatlib Update copyright for the year 2010. 2010-01-02 16:58:17 +00:00
ecpglib Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add sqlda support to 2010-01-05 16:38:23 +00:00
include Ah, should read the file completely. I got so used to git that I almost forgot about the cvs stuff. 2010-01-05 17:04:18 +00:00
pgtypeslib Update copyright for the year 2010. 2010-01-02 16:58:17 +00:00
preproc Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add sqlda support to 2010-01-05 16:38:23 +00:00
test Ah, should read the file completely. I got so used to git that I almost forgot about the cvs stuff. 2010-01-05 17:04:18 +00:00
ChangeLog Forgot to add dynamic cursors to Changelog. 2009-11-26 15:40:43 +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.