postgresql/src/interfaces/ecpg
Alvaro Herrera e41c7bb7cd VPATH fixes.
2007-06-12 15:00:41 +00:00
..
compatlib Remove remains of old depend target. 2007-01-20 17:16:17 +00:00
ecpglib Fixed one memory leak in descriptor code. 2007-06-11 11:52:08 +00:00
include Applied patch send by Joachim Wieland to fix INTEGER_DATETIMES under MSVC. 2007-05-28 09:46:47 +00:00
pgtypeslib Also removed the function not just the call, sorry. 2007-05-21 07:07:48 +00:00
preproc Fixed reduce/recuce problem due to CURRENT_P. 2007-06-12 11:32:30 +00:00
test VPATH fixes. 2007-06-12 15:00:41 +00:00
ChangeLog Synced parser and keyword list. 2007-06-12 07:55:56 +00:00
Makefile Remove remains of old depend target. 2007-01-20 17:16:17 +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.