postgresql/src/interfaces/ecpg
Michael Meskes 6425d6f6aa Fix ecpg crash with bytea and cursor variables.
Author: Jehan-Guillaume de Rorthais <jgdr@dalibo.com>
2020-06-30 18:35:21 +02:00
..
compatlib Update copyright for 2019 2019-01-02 12:44:25 -05:00
ecpglib Translation updates 2020-02-10 13:15:42 +01:00
include Move declaration of ecpg_gettext() to a saner place. 2019-11-07 14:21:52 -05:00
pgtypeslib Allow ecpg to be built stand-alone, allow parallel libpq make 2020-03-31 14:17:32 -04:00
preproc Fix ecpg crash with bytea and cursor variables. 2020-06-30 18:35:21 +02:00
test Fix ecpg crash with bytea and cursor variables. 2020-06-30 18:35:21 +02: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.