postgresql/src/interfaces/ecpg
Peter Eisentraut 69f66fbf72 Translation updates
Source-Git-URL: https://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: aa68946b3e7aa4447636af97ee7b0f249144085d
2024-11-11 13:57:37 +01:00
..
compatlib Revert ECPG's use of pnstrdup() 2024-08-08 07:42:44 +02:00
ecpglib Translation updates 2024-11-11 13:57:37 +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:05 +09:00
preproc Translation updates 2024-11-11 13:57:37 +01:00
test ecpg: Fix out-of-bound read in DecodeDateTime() 2024-10-23 08:35:05 +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

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.