postgresql/src/interfaces/ecpg
2020-11-11 17:37:18 +01:00
..
compatlib Initial pgindent and pgperltidy run for v13. 2020-05-14 13:06:50 -04:00
ecpglib Don't use custom OID symbols in pg_type.dat, either. 2020-10-29 13:33:38 -04:00
include Make the order of the header file includes consistent. 2019-11-25 08:08:57 +05:30
pgtypeslib Replace remaining StrNCpy() by strlcpy() 2020-08-10 23:20:37 +02:00
preproc Fix some stray whitespace in parser files 2020-11-11 17:37:18 +01:00
test Avoid re-using output variables in new ecpg test case. 2020-11-07 16:25:42 -05:00
Makefile Use https for gnu.org links 2020-10-14 08:24:54 +02: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.