postgresql/src/interfaces/ecpg
Peter Eisentraut 5a55a80cc3 Translation updates
Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: 4bbd5d22a42690d7e76c41ae04044d8d9ef2d5ed
2020-11-09 12:39:47 +01:00
..
compatlib Prevent accidental linking of system-supplied copies of libpq.so etc. 2018-04-03 16:26:05 -04:00
ecpglib Translation updates 2020-11-09 12:39:47 +01:00
include Move declaration of ecpg_gettext() to a saner place. 2019-11-07 14:21:52 -05:00
pgtypeslib Fix off-by-one error in PGTYPEStimestamp_fmt_asc 2019-11-30 15:05:31 +01:00
preproc Translation updates 2020-11-09 12:39:47 +01:00
test Increase hard-wired timeout values in ecpg regression tests. 2020-08-04 15:20:31 -04:00
Makefile Fix parallel make risk with new check temp-install setup 2015-04-29 20:34:22 -04: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.