postgresql/src/interfaces/ecpg
Tom Lane 637028afe1 Code review for standard_conforming_strings patch. Fix it so it does not
throw warnings for 100%-SQL-standard constructs, clean up some minor
infelicities, try to un-break ecpg to the best of my ability.  (It's not clear
how ecpg is going to find out the setting of standard_conforming_strings,
though.)  I think pg_dump still needs work, too.
2006-05-11 19:15:36 +00:00
..
compatlib Fixed memory leak bugs found by Martijn Oosterhout. 2006-04-24 09:45:22 +00:00
ecpglib We only need to add thread.c on non-WIN32 platforms, since get_home_path 2006-04-29 20:13:07 +00:00
include
pgtypeslib Fixed memory leak bugs found by Martijn Oosterhout. 2006-04-24 09:45:22 +00:00
preproc Code review for standard_conforming_strings patch. Fix it so it does not 2006-05-11 19:15:36 +00:00
test
ChangeLog Fixed memory leak bugs found by Martijn Oosterhout. 2006-04-24 09:45:22 +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.