postgresql/src/interfaces/ecpg
Michael Meskes e400840b1d Fix closing of incorrectly named cursor.
Patch by "Shinoda, Noriyoshi" <noriyoshi.shinoda@hpe.com>
2018-03-17 18:15:33 +01:00
..
compatlib Update copyright for 2018 2018-01-02 23:30:12 -05:00
ecpglib Add Oracle like handling of char arrays. 2018-03-14 00:54:13 +01:00
include Add some const decorations to prototypes 2017-11-10 13:38:57 -05:00
pgtypeslib Move strtoint() to common 2018-03-13 10:21:09 -04:00
preproc Add Oracle like handling of char arrays. 2018-03-14 00:54:13 +01:00
test Fix closing of incorrectly named cursor. 2018-03-17 18:15:33 +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.