postgresql/src/interfaces/ecpg
Peter Eisentraut e9c05281b5 Get rid of perror(), substitute some better phrased error messages.
malloc() doesn't set errno, so most uses were buggy anyway.
2004-11-09 15:57:57 +00:00
..
compatlib Another pgindent run with lib typedefs added. 2004-08-30 02:54:42 +00:00
ecpglib Add 'int' cast for getpid() because some Solaris releases return long 2004-10-14 20:23:46 +00:00
include Fix Cygwin defines to be consistent. 2004-09-09 00:59:49 +00:00
pgtypeslib Make sure no libs use libpgport by removing it from the link line. 2004-10-04 20:36:12 +00:00
preproc Get rid of perror(), substitute some better phrased error messages. 2004-11-09 15:57:57 +00:00
test Fix syntax error by adding a space. 2004-08-04 16:02:08 +00:00
ChangeLog Synced parser 2004-10-18 13:36:23 +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.