postgresql/src/interfaces/ecpg
Peter Eisentraut 76a3e1d7a8 Translation updates
Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: 0ef8754efd61f40389ef749bb6ffecd6abc1555b
2023-05-08 14:33:02 +02:00
..
compatlib Make ecpg's rjulmdy() and rmdyjul() agree with their declarations. 2021-01-28 11:17:13 -05:00
ecpglib Translation updates 2023-05-08 14:33:02 +02:00
include Fix some typos, grammar and style in docs and comments 2021-02-24 16:13:17 +09:00
pgtypeslib Fix range check in ECPG numeric to int conversion 2021-07-30 16:28:43 -04:00
preproc Translation updates 2023-05-08 14:33:02 +02:00
test ecpg: Fix handling of strings in ORACLE compat code with SQLDA 2023-04-18 11:20:50 +09:00
Makefile Add a temp-install prerequisite to src/interfaces/ecpg "checktcp". 2022-04-16 17:43:57 -07:00
README.dynSQL Fix whitespace issues found by git diff --check, add gitattributes 2013-11-10 14:48:29 -05:00

README.dynSQL

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.