postgresql/src/interfaces/ecpg
Peter Eisentraut ac449d8801 Translation updates
Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: 031ca65d7825c3e539a3e62ea9d6630af12e6b6b
2020-05-18 12:49:30 +02:00
..
compatlib Initial pgindent and pgperltidy run for v13. 2020-05-14 13:06:50 -04:00
ecpglib Translation updates 2020-05-18 12:49:30 +02:00
include Make the order of the header file includes consistent. 2019-11-25 08:08:57 +05:30
pgtypeslib Initial pgindent and pgperltidy run for v13. 2020-05-14 13:06:50 -04:00
preproc Translation updates 2020-05-18 12:49:30 +02:00
test Fix compiler warnings on 64-bit Windows 2020-02-21 19:58:39 +01: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.