postgresql/src/interfaces/ecpg
Michael Meskes b46f5ebd9c Let compiler handle size calculation of bool types.
Back in the day this did not work, but modern compilers should handle it themselves.
2015-09-19 11:13:00 +02:00
..
compatlib Check for out of memory when allocating sqlca. 2015-06-15 14:21:03 +02:00
ecpglib Let compiler handle size calculation of bool types. 2015-09-19 11:13:00 +02:00
include Tweak __attribute__-wrapping macros for better pgindent results. 2015-03-26 14:03:25 -04:00
pgtypeslib Change type of DOW/DOY to UNITS 2015-09-07 20:47:41 +01:00
preproc Translation updates 2015-06-28 23:56:55 -04:00
test Improve speed of make check-world 2015-04-23 08:59:52 -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.