postgresql/src/interfaces/ecpg
Peter Eisentraut 5d3dab9129 Translation updates
Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: 747984d18a963a4661f14623afe3627ac969ea7c
2025-08-11 14:45:15 +02:00
..
compatlib Revert ECPG's use of pnstrdup() 2024-08-08 07:42:46 +02:00
ecpglib Translation updates 2025-08-11 14:45:15 +02: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:07 +09:00
preproc Translation updates 2025-02-17 17:51:30 +01:00
test Test ECPG decadd(), decdiv(), decmul(), and decsub() for risnull() input. 2025-01-25 11:28:19 -08: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

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.