summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/ecpglib
AgeCommit message (Collapse)Author
2004-02-10Repair missing inclusions of -lintl for shared libraries.Tom Lane
2004-01-28- Issue a warning if a cursor is declared but not opened.Michael Meskes
- Fixed prototype for ECPGprepared_statement to not moan about "const char" - Fixed parsing of nested structures. - Added option to parse header files.
2004-01-07More janitorial work: remove the explicit casting of NULL literals to aNeil Conway
pointer type when it is not necessary to do so. For future reference, casting NULL to a pointer type is only necessary when (a) invoking a function AND either (b) the function has no prototype OR (c) the function is a varargs function.
2003-12-03Added patch by Dave Cramer for array handling in ecpglib.Michael Meskes
2003-11-30Bump all version numbers and version stamps mentioned in RELEASE_CHANGES.Bruce Momjian
2003-11-29make sure the $Id tags are converted to $PostgreSQL as well ...PostgreSQL Daemon
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-11-24Rename USE_THREADS to ENABLE_THREAD_SAFETY to avoid name clash with Perl.Peter Eisentraut
Fixes compilation failure with --enable-thread-safety --with-perl and Perl 5.6.1.
2003-11-10Re-added forgotten cache.Michael Meskes
2003-11-08Made sure an internal array is not treated as a user defined one.Michael Meskes
2003-10-28Include -lkrb5 when needed for shlibs depending on libpq. Per reportTom Lane
from Johan Henselmans.
2003-10-26Fixed bug with indicators when storage for the string is dynamically allocated.Michael Meskes
2003-10-21Cope with platforms that offer LONGLONG_MIN in place of the C99-specTom Lane
LLONG_MIN. One example is AIX, per report from Andreas.
2003-09-27Adjust Darwin build to use the default 'two level namespace' linkingTom Lane
method. Fix a number of places where shared libraries were linked without mentioning all the libraries they depend on; the Darwin and AIX ports are known to require this, and it doesn't seem to hurt any other supported platforms. (Hence, remove code in pl/tcl makefile that tried to avoid mentioning other libs if not needed.)
2003-09-27Rename thread compile flag. Move thread test program to tools/thread,Bruce Momjian
and improve tests.
2003-09-20- Applied some bug fixing patches by Dave Cramer <dave@fastcrypt.com>.Michael Meskes
- Added protecting defines to include files.
2003-09-19Removed superfluous return statement in get_data.Michael Meskes
2003-09-18- Accept output variables for FETCH in DECLARE statement.Michael Meskes
- Synced parser. - Allowed C variables to carry the name of prepared statements. - Added Informix handling of datatype converion errors.
2003-09-09- Added Dave patch for Informix handling of numeric/int conversion.Michael Meskes
- Changed all new datatypes to lowercase. - Fixed rounding bug in numerical types.
2003-08-25Synced parser and fixed a bug in error output to log file.Michael Meskes
2003-08-24Add macros for error result fields to libpq.Peter Eisentraut
2003-08-08Fix null checking of type decimal datums without indicator in InformixPeter Eisentraut
mode. from Dave Cramer
2003-08-08Be a little bit more careful about using sqlstate, in case libpq returnedPeter Eisentraut
NULL for it.
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-08-01Use only two-part shared library version numbers, for better portabilityPeter Eisentraut
and consistency.
2003-08-01Make ecpg SQLSTATE-aware. Map existing SQLCODE assignments to SQLSTATEs,Peter Eisentraut
rather than parsing the message. Add some documentation about embedded SQL.
2003-08-01- Added some Informix error codes in Informix mode.Michael Meskes
- Added just another pgtypeslib function.
2003-07-25Added explicit casts for date/interval/timestamp.Michael Meskes
2003-07-18Added more compat stuff ot the parser.Michael Meskes
2003-07-17Allow blanks at the end of numerical values.Michael Meskes
2003-07-17Fixed some bugs in Informix compat functions.Michael Meskes
2003-07-15Started to create different error codes for different backend messages.Michael Meskes
2003-07-14 - Synced preproc.y with gram.yMichael Meskes
- Init sqlca in ECPGprepare(). - Added CLOSE DATABASE for Informix compatibility.
2003-07-08More informix fixes.Michael Meskes
2003-07-08Fix segfault in connect in informix mode.Michael Meskes
2003-07-07"char *" of course is not the same as "char []". So I had to fix the way ↵Michael Meskes
ecpg treated the second one.
2003-07-04date, interval and timestamp data should be quoted.Michael Meskes
2003-07-04Fixed informix behaviour for select without into.Michael Meskes
2003-07-01Use ISO dates in pgtypeslib by default.Michael Meskes
Applied patch by Philip Yarra to fix some thread issues. Added a new data type "decimal" which is mostly the same as our "numeric" but uses a fixed length array to store the digits. This is for compatibility with Informix and maybe others.
2003-06-26Added just another compatibility level for Informix.Michael Meskes
2003-06-26Wrap LONG_LONG_MIN redfinition around HAVE_LONG_LONG_INT_64.Bruce Momjian
2003-06-26Fix compile problem for missing LONG_LONG_MIN on BSD/OS.Bruce Momjian
2003-06-25Some systems need another header file included.Michael Meskes
2003-06-25Implemented Informix special way to treat NULLs, removed warnings, synced.Michael Meskes
2003-06-22Added missing terminating '\0' char for data put into char *.Michael Meskes
2003-06-20Just another Informix compatibility change. They uses "free" for cursors as ↵Michael Meskes
wellafter closing them.
2003-06-20Sorry, missed a file.Michael Meskes
2003-06-20Allow constants in using clauses.Michael Meskes
2003-06-19Fixed fetch into char * and added missing prototype for an Informix function.Michael Meskes