postgresql/src/interfaces/ecpg
2009-02-05 08:28:47 +00:00
..
compatlib NLS cleanup in ecpglib 2009-01-15 11:52:55 +00:00
ecpglib Argh, wrong line copied again. 2009-02-03 08:55:45 +00:00
include Recreate ecpg_config.h with a stamp file created by config.status, same 2009-01-22 22:27:13 +00:00
pgtypeslib Mixing long and int entries of a union only works on some architectures. 2009-02-05 08:28:47 +00:00
preproc Make messages consistent with existing ones 2009-01-30 12:53:43 +00:00
test When changing a regression test file one should also change the expected output file. 2009-02-02 16:54:28 +00:00
ChangeLog Fixed auto allocation for binary data types. 2009-02-02 16:14:06 +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.