Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Implementation for cancelQuery by Grant Finnemore <grantf@guruhut.co.za> | Dave Cramer | 2002-02-26 |
| | |||
* | compiles correctly but still doesn't work with jdk 1.4 | Dave Cramer | 2002-02-24 |
| | |||
* | Heimdal support (Kerberos V implementation from KTH) | Peter Eisentraut | 2002-02-23 |
| | |||
* | Add -Wno-error to CFLAGS, so the rest of the tree can compile with | Peter Eisentraut | 2002-02-23 |
| | | | | -Werror. | ||
* | fixed compile error | Dave Cramer | 2002-02-22 |
| | |||
* | This patch fixes the exception thrown to inform the user the method | Dave Cramer | 2002-02-22 |
| | | | | | | | getColumnClassName(int) is not implemented. This will futher fixes method ResultSet.getObject(int) since it requires the getColumnClassName(int) method to return the proper java class used to map the database column. auther Ed Yu | ||
* | Patch from Cormac Twomey | Dave Cramer | 2002-02-22 |
| | | | | | fixes getIndexInfo throwing NullPointerException fixes getIndexInfo improper results when multiple key indexs are used | ||
* | Patch from Cormac Twomey | Dave Cramer | 2002-02-22 |
| | | | | | fixes getIndexInfo throwing NullPointerException fixes getIndexInfo improper results when multiple key indexs are used | ||
* | now compiles clean with jdk 1.4 | Dave Cramer | 2002-02-22 |
| | |||
* | Remove compile warnings in multibute mode. | Hiroshi Inoue | 2002-02-18 |
| | |||
* | The version is now 7.01.0010. | Hiroshi Inoue | 2002-02-18 |
| | | | | | | | | | | | | | | | | | | | | | | | 1) Handle parameter array. 2) Allow re-use of the connection handle after SQLDisconnect. 3) Reject NULL if no indicator specified. 4) Improve the handling of '_' in table name. 5) Unify internal begin/commit/abort operations. 6) Change SQLTables() to return null not "" for the table_owner. 7) Fix a bug about parameter handling reported by Benoit Menendez. 8) Add cast in handling ODBC date/time escape sequences. 9) Fix a bug about cache_size handing in declare/fetch mode. [ODBC3.0 related] 10) Improve the handling of descriptor handles(ODBC3.0). 11) Improve the type handling of some types for ODBC3.0. [Thanks to Marcelo Aceto for his useful patches] 12) Allow nested ODBC escape. 13) Allow changing autocommit on/off inside the transaction block. 14) Improve the handling of ODBC scalar functions. | ||
* | Separate info30.c from info.c. | Hiroshi Inoue | 2002-02-18 |
| | |||
* | Add files for ODBC3.0 support. | Hiroshi Inoue | 2002-02-18 |
| | |||
* | Remove ODBC todo, add to main TODO. | Bruce Momjian | 2002-02-18 |
| | |||
* | Remove warning about automatic inclusion of sqlca. | Peter Eisentraut | 2002-02-15 |
| | |||
* | Update Win32-world version number of libpq++. | Peter Eisentraut | 2002-01-30 |
| | |||
* | Added patch to temporarily disable locale for descriptors too (Christof) | Michael Meskes | 2002-01-23 |
| | |||
* | libpq++/pgconnection.h must not include postgres_fe.h, else it fails to | Tom Lane | 2002-01-22 |
| | | | | | | compile in client apps that use the standard installed header set. To allow removing that include, move DLLIMPORT definitions out of c.h and into the appropriate port-specific header files. | ||
* | Fixes to getImportedKeys/getExportedKeys from Jason Davies | Dave Cramer | 2002-01-18 |
| | | | | Previous versions did not correctly identify primary/foreign keys | ||
* | Accept subsequent commits. This should have been just a warning anyway. I | Michael Meskes | 2002-01-18 |
| | | | | cannot see a reason why it should be an error. | ||
* | Applied patch submitted by Ryouichi Matsuda (r-matuda@sra.co.jp) that fixed ↵ | Barry Lind | 2002-01-15 |
| | | | | a problem with leading zeros being lost on fractional seconds when setting a timestamp value on a PreparedStatement. | ||
* | Applied patch from Ryouichi Matsuda <r-matuda@sra.co.jp> where the jdbc | Barry Lind | 2002-01-15 |
| | | | | | driver was not properly handling timestamptz datatype when using the getObject() method on ResultSet. Fix adds this datatype to the object mappings. | ||
* | Ensure that ecpg/test is cleaned by higher-level 'make clean'. | Tom Lane | 2002-01-14 |
| | |||
* | Small AIX fixes from Rick Flower. | Bruce Momjian | 2002-01-14 |
| | |||
* | - Fixed variable handling for struct members. | Michael Meskes | 2002-01-13 |
| | | | | | - Removed check for array input. An attribut might store the complete array. | ||
* | Added Christof's fixes. | Michael Meskes | 2002-01-11 |
| | |||
* | *** empty log message *** | Hiroshi Inoue | 2002-01-11 |
| | |||
* | Add a directory to save the changes until 7.3-tree is branched. | Hiroshi Inoue | 2002-01-11 |
| | |||
* | Include sqlca.h automatically. | Michael Meskes | 2002-01-10 |
| | |||
* | The result of getopt() should be compared to -1, not EOF, per | Tom Lane | 2002-01-10 |
| | | | | pgsql-hackers discussion of this date. | ||
* | Fix include paths for case of VPATH build. | Tom Lane | 2002-01-09 |
| | |||
* | Fix copy-and-paste mistake exposed by gcc warning. | Tom Lane | 2002-01-08 |
| | |||
* | Revert last change (CFLAGS+=-g). Probably was a mistake... | Peter Eisentraut | 2002-01-08 |
| | |||
* | Remove shift/reduce conflicts introduced by last change. | Tom Lane | 2002-01-08 |
| | |||
* | Fixed array pointers, no longer using void * in arithmetics. | Michael Meskes | 2002-01-08 |
| | |||
* | Fixed parser to accept initializing expressions starting with "(". | Michael Meskes | 2002-01-07 |
| | |||
* | Editorial review | Peter Eisentraut | 2002-01-07 |
| | |||
* | Bugfix for bug reported by Marcus Better (marcus@dactylis.com). When preforming | Barry Lind | 2002-01-05 |
| | | | | | | a get on a bytea value the code was running the raw value from the server through character set conversion, which if the character set was SQL_ASCII would cause all 8bit characters to become ?'s. | ||
* | Make sure that all <ctype.h> routines are called with unsigned char | Tom Lane | 2001-12-30 |
| | | | | | values; it's not portable to call them with signed chars. I recall doing this for the last release, but a few more uncasted calls have snuck in. | ||
* | - Removed space_or_nl and line_end from pgc.l. | Michael Meskes | 2001-12-23 |
| | | | | | - Fixed several bugs concerning arrays of structs including a memory allocation bug. | ||
* | Czech translation updates from Karel Zak | Peter Eisentraut | 2001-12-21 |
| | |||
* | Remove duplicate lines from fouled up last commit (my DSL line failed | Thomas G. Lockhart | 2001-12-21 |
| | | | | during the CVS update, leaving locks and bad files). | ||
* | More comment for libpgeasy. | Bruce Momjian | 2001-12-14 |
| | |||
* | Fix double-memory free in libpgeasy; problem introduced yesterday. | Bruce Momjian | 2001-12-14 |
| | |||
* | Clean up comment in libpgeasy. | Bruce Momjian | 2001-12-14 |
| | |||
* | Add Swedish | Peter Eisentraut | 2001-12-13 |
| | |||
* | update | Peter Eisentraut | 2001-12-13 |
| | |||
* | revert last change | Peter Eisentraut | 2001-12-13 |
| | |||
* | Free libpgeasy result structure on database close; fixed memory leak. | Bruce Momjian | 2001-12-13 |
| | |||
* | Applied patch from Thomas O'Dowd that fixes timestamp parsing. The jdbc code | Barry Lind | 2001-12-11 |
| | | | | | | wasn't updated to handle more than two decimal digits for fractional seconds that now are possible in 7.2. This patch fixes the timestamp parsing logic. I have built and tested on both jdbc1 and jdbc2. |