postgresql/src/interfaces/ecpg
Tom Lane 542eeba269 Fix overflow check in tm2timestamp (this time for sure).
I fixed this code back in commit 841b4a2d5, but didn't think carefully
enough about the behavior near zero, which meant it improperly rejected
1999-12-31 24:00:00.  Per report from Magnus Hagander.
2013-03-04 15:13:31 -05:00
..
compatlib Update copyrights for 2013 2013-01-01 17:15:01 -05:00
ecpglib Made ecpglib use translated messages. 2013-01-27 13:48:12 +01:00
include Mark variables as const in pgtypeslib if they only carry a format string. 2011-12-18 19:04:19 +01:00
pgtypeslib Fix overflow check in tm2timestamp (this time for sure). 2013-03-04 15:13:31 -05:00
preproc Add support for piping COPY to/from an external program. 2013-02-27 18:22:31 +02:00
test Extend and improve use of EXTRA_REGRESS_OPTS. 2013-01-12 08:28:58 -05:00
Makefile Suppress parallel build in interfaces/ecpg/preproc/. 2012-11-28 22:19:46 -05:00
README.dynSQL Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00

src/interfaces/ecpg/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.