postgresql/src/interfaces/ecpg
Peter Eisentraut 1933ae629e Add PostgreSQL home page to --help output
Per emerging standard in GNU programs and elsewhere.  Autoconf already
has support for specifying a home page, so we can just that.

Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://www.postgresql.org/message-id/flat/8d389c5f-7fb5-8e48-9a4a-68cec44786fa%402ndquadrant.com
2020-02-28 13:12:21 +01:00
..
compatlib Update copyrights for 2020 2020-01-01 12:21:45 -05:00
ecpglib Fix out-of-memory handling in ecpglib. 2020-01-19 19:15:15 -05:00
include Make the order of the header file includes consistent. 2019-11-25 08:08:57 +05:30
pgtypeslib Update copyrights for 2020 2020-01-01 12:21:45 -05:00
preproc Add PostgreSQL home page to --help output 2020-02-28 13:12:21 +01:00
test Fix compiler warnings on 64-bit Windows 2020-02-21 19:58:39 +01:00
Makefile Fix parallel make risk with new check temp-install setup 2015-04-29 20:34:22 -04: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.