postgresql/src/interfaces/ecpg
Peter Eisentraut 4f7df90db0 Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs,
rather than parsing the message.  Add some documentation about embedded
SQL.
2003-08-01 13:53:36 +00:00
..
compatlib Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs, 2003-08-01 13:53:36 +00:00
ecpglib Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs, 2003-08-01 13:53:36 +00:00
include Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs, 2003-08-01 13:53:36 +00:00
pgtypeslib - Added some Informix error codes in Informix mode. 2003-08-01 08:21:04 +00:00
preproc Added missing TO keyword. 2003-08-01 11:25:55 +00:00
test Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs, 2003-08-01 13:53:36 +00:00
ChangeLog - Added some Informix error codes in Informix mode. 2003-08-01 08:21:04 +00:00
Makefile Fix compilation on Cygwin. 2003-05-22 17:20:44 +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.