postgresql/src/interfaces/ecpg
Michael Meskes b3627d1de3 Applied Zoltan's patch to make char the default sqlda type.
Given that undefined types are handled as character strings anyway the type
translation function can simply return the correcponding ECPGt_char type.
2010-01-13 09:06:51 +00:00
..
compatlib Update copyright for the year 2010. 2010-01-02 16:58:17 +00:00
ecpglib Applied Zoltan's patch to make char the default sqlda type. 2010-01-13 09:06:51 +00:00
include Remove all the special-case code for INT64_IS_BUSTED, per decision that 2010-01-07 04:53:35 +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 Fix SQL3 type return value. 2010-01-13 08:41:50 +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.