postgresql/src/interfaces/ecpg
Amit Kapila dddf4cdc33 Make the order of the header file includes consistent in non-backend modules.
Similar to commit 7e735035f2, this commit makes the order of header file
inclusion consistent for non-backend modules.

In passing, fix the case where we were using angle brackets (<>) for the
local module includes instead of quotes ("").

Author: Vignesh C
Reviewed-by: Amit Kapila
Discussion: https://postgr.es/m/CALDaNm2Sznv8RR6Ex-iJO6xAdsxgWhCoETkaYX=+9DW3q0QCfA@mail.gmail.com
2019-10-25 07:41:52 +05:30
..
compatlib Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
ecpglib Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
include Revert "Add DECLARE STATEMENT support to ECPG." 2019-09-20 12:47:37 -04:00
pgtypeslib Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
preproc Make the order of the header file includes consistent in non-backend modules. 2019-10-25 07:41:52 +05:30
test Remove some code for old unsupported versions of MSVC 2019-10-08 10:50:54 +02: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.