postgresql/src/interfaces/ecpg
Peter Eisentraut ef23624caf Translation updates
Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: b87044c97e0de71889c8d23c0ad3241080785d71
2025-02-10 15:05:03 +01:00
..
compatlib Revert ECPG's use of pnstrdup() 2024-08-08 07:42:21 +02:00
ecpglib Translation updates 2024-11-11 13:53:52 +01:00
include Clean up Windows-specific mutex code in libpq and ecpglib. 2024-02-09 11:11:39 -05:00
pgtypeslib ecpg: Fix out-of-bound read in DecodeDateTime() 2024-10-23 08:35:02 +09:00
preproc Translation updates 2025-02-10 15:05:03 +01:00
test meson: Add pg_regress_ecpg to ecpg test dependencies 2025-02-04 17:56:20 -05:00
Makefile Add a temp-install prerequisite to src/interfaces/ecpg "checktcp". 2022-04-16 17:43:54 -07:00
meson.build Update copyright for 2023 2023-01-02 15:00:37 -05: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.