postgresql/src/interfaces/ecpg
Michael Meskes aedd189a5c Allow SET CONNECTION to be followed by connection object without leading "TO" or "=".
Allow whenever statement to list function without parameters.
2003-02-25 15:58:03 +00:00
..
include Forgot to commit Makefile change. 2003-02-21 15:19:18 +00:00
lib - Synced parser and keyword file. 2003-02-14 13:17:13 +00:00
preproc Allow SET CONNECTION to be followed by connection object without leading "TO" or "=". 2003-02-25 15:58:03 +00:00
test - Synced parser and keyword file. 2003-02-14 13:17:13 +00:00
ChangeLog Allow SET CONNECTION to be followed by connection object without leading "TO" or "=". 2003-02-25 15:58:03 +00:00
Makefile Ensure that ecpg/test is cleaned by higher-level 'make clean'. 2002-01-14 17:49:56 +00:00
README.dynSQL Added Christof's patches. 2001-11-14 11:11:49 +00:00

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.