postgresql/src/interfaces/ecpg
Tom Lane 52acfd27f1 Fix some missing .gitignore and "make clean" items in ecpg.
Some of the files we optionally link in from elsewhere weren't ignored
and/or weren't cleaned up at "make clean".  Noted while testing on a
machine that needs our version of snprintf.c.
2014-02-19 18:50:48 -05:00
..
compatlib Fix some missing .gitignore and "make clean" items in ecpg. 2014-02-19 18:50:48 -05:00
ecpglib Fix some missing .gitignore and "make clean" items in ecpg. 2014-02-19 18:50:48 -05:00
include ecpg: Parallel make fix 2013-03-29 21:39:55 -04:00
pgtypeslib Fix some missing .gitignore and "make clean" items in ecpg. 2014-02-19 18:50:48 -05:00
preproc Prevent potential overruns of fixed-size buffers. 2014-02-17 11:20:21 -05:00
test Fix handling of wide datetime input/output. 2014-02-17 09:33:31 -05:00
Makefile Rename 'gmake' to 'make' in docs and recommended commands 2014-02-12 17:29:19 -05:00
README.dynSQL Fix whitespace issues found by git diff --check, add gitattributes 2013-11-10 14:48:29 -05:00

src/interfaces/ecpg/README.dynSQL

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.