postgresql/src/interfaces/ecpg
Bruce Momjian 84bc2b1752 Use macro MONTHS_PER_YEAR instead of '12' in /ecpg/pgtypeslib
All other places already use MONTHS_PER_YEAR appropriately.

Backpatch-through: 9.6
2021-04-02 16:42:38 -04:00
..
compatlib Make ecpg's rjulmdy() and rmdyjul() agree with their declarations. 2021-01-28 11:17:13 -05:00
ecpglib Remove dead code in ECPGconnect(), and improve documentation. 2021-02-11 15:05:55 -05:00
include Fix some typos, grammar and style in docs and comments 2021-02-24 16:13:17 +09:00
pgtypeslib Use macro MONTHS_PER_YEAR instead of '12' in /ecpg/pgtypeslib 2021-04-02 16:42:38 -04:00
preproc Need to step forward in the loop to get to an end. 2021-03-24 22:06:31 +01:00
test Add DECLARE STATEMENT command to ECPG 2021-03-24 21:09:24 +01: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.