postgresql/src/interfaces/ecpg
2005-10-08 02:39:27 +00:00
..
compatlib Bump minor version numbers for 8.1 compared to 8.0. 2005-03-14 17:27:50 +00:00
ecpglib Fixed transaction command handling to not ignore savepoints and to correctly check for errors. 2005-09-12 11:57:53 +00:00
include Add missing ecpg prototype for newly added functions. 2004-12-23 13:19:17 +00:00
pgtypeslib Add spacing around operators. 2005-10-08 02:39:27 +00:00
preproc Also synced the ecpg lexer with the backend lexer. 2005-10-05 14:58:36 +00:00
test Warning cleanups for ecpg tests. Avoid doing pointer arithmetic on void *, 2005-06-30 07:08:59 +00:00
ChangeLog Also synced the ecpg lexer with the backend lexer. 2005-10-05 14:58:36 +00:00
Makefile
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.