| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | This patch to the python bindings adds C versions of the often-used | Bruce Momjian | 2002-03-05 | 2 | -26/+174 |
| | | | | | | | | query args quoting routines, as well as support for quoting lists e.g. dbc.execute("SELECT * FROM foo WHERE blah IN %s", ([1,2,3],)) Elliot Lee | ||||
| * | Add PQunescapeBytea libpq function. | Bruce Momjian | 2002-03-04 | 2 | -2/+94 |
| | | | | | | | Everyone using libpq and bytea is probably having to invent this wheel.. Patrick Welche | ||||
| * | Improve libpgeasy API for multiple result sets, add example. | Bruce Momjian | 2002-03-04 | 2 | -85/+123 |
| | | |||||
| * | Fix bogus error check in pg_execute, per report from lbayuk@mindspring.com. | Tom Lane | 2002-03-04 | 1 | -2/+2 |
| | | |||||
| * | Don't bother to request SSL connection over a Unix socket, since the | Tom Lane | 2002-03-02 | 1 | -4/+8 |
| | | | | | | postmaster won't accept the request anyway. (If your kernel can't be trusted, SSL will not help you.) | ||||
| * | Add files for Unicode support. | Hiroshi Inoue | 2002-03-01 | 6 | -0/+1392 |
| | | |||||
| * | Improve the handling of ODBC escape(a request from Marcelo Aceto). | Hiroshi Inoue | 2002-02-27 | 3 | -23/+46 |
| | | | | | | Change SQLGetFunctions() to reply not yet implemented ODBC 3.0 functions precisely. | ||||
| * | Implementation for cancelQuery by Grant Finnemore <grantf@guruhut.co.za> | Dave Cramer | 2002-02-26 | 3 | -4/+54 |
| | | |||||
| * | compiles correctly but still doesn't work with jdk 1.4 | Dave Cramer | 2002-02-24 | 1 | -6/+7 |
| | | |||||
| * | Heimdal support (Kerberos V implementation from KTH) | Peter Eisentraut | 2002-02-23 | 1 | -2/+11 |
| | | |||||
| * | Add -Wno-error to CFLAGS, so the rest of the tree can compile with | Peter Eisentraut | 2002-02-23 | 1 | -1/+5 |
| | | | | | -Werror. | ||||
| * | fixed compile error | Dave Cramer | 2002-02-22 | 1 | -6/+6 |
| | | |||||
| * | This patch fixes the exception thrown to inform the user the method | Dave Cramer | 2002-02-22 | 1 | -2/+60 |
| | | | | | | | | 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 | 1 | -5/+11 |
| | | | | | | fixes getIndexInfo throwing NullPointerException fixes getIndexInfo improper results when multiple key indexs are used | ||||
| * | Patch from Cormac Twomey | Dave Cramer | 2002-02-22 | 1 | -3/+4 |
| | | | | | | 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 | 1 | -207/+234 |
| | | |||||
| * | Remove compile warnings in multibute mode. | Hiroshi Inoue | 2002-02-18 | 2 | -3/+3 |
| | | |||||
| * | The version is now 7.01.0010. | Hiroshi Inoue | 2002-02-18 | 21 | -600/+1263 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -0/+351 |
| | | |||||
| * | Add files for ODBC3.0 support. | Hiroshi Inoue | 2002-02-18 | 3 | -0/+618 |
| | | |||||
| * | Remove ODBC todo, add to main TODO. | Bruce Momjian | 2002-02-18 | 1 | -16/+0 |
| | | |||||
| * | Remove warning about automatic inclusion of sqlca. | Peter Eisentraut | 2002-02-15 | 1 | -6/+1 |
| | | |||||
| * | Update Win32-world version number of libpq++. | Peter Eisentraut | 2002-01-30 | 1 | -4/+4 |
| | | |||||
| * | Added patch to temporarily disable locale for descriptors too (Christof) | Michael Meskes | 2002-01-23 | 3 | -3/+16 |
| | | |||||
| * | libpq++/pgconnection.h must not include postgres_fe.h, else it fails to | Tom Lane | 2002-01-22 | 1 | -2/+1 |
| | | | | | | | 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 | 2 | -108/+112 |
| | | | | | 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 | 2 | -5/+14 |
| | | | | | 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 | 2 | -2/+23 |
| | | | | | 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 | 2 | -6/+6 |
| | | | | | | 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 | 1 | -0/+1 |
| | | |||||
| * | Small AIX fixes from Rick Flower. | Bruce Momjian | 2002-01-14 | 2 | -2/+3 |
| | | |||||
| * | - Fixed variable handling for struct members. | Michael Meskes | 2002-01-13 | 6 | -19/+24 |
| | | | | | | - Removed check for array input. An attribut might store the complete array. | ||||
| * | Added Christof's fixes. | Michael Meskes | 2002-01-11 | 2 | -5/+32 |
| | | |||||
| * | *** empty log message *** | Hiroshi Inoue | 2002-01-11 | 55 | -26833/+0 |
| | | |||||
| * | Add a directory to save the changes until 7.3-tree is branched. | Hiroshi Inoue | 2002-01-11 | 55 | -0/+26833 |
| | | |||||
| * | Include sqlca.h automatically. | Michael Meskes | 2002-01-10 | 3 | -6/+15 |
| | | |||||
| * | The result of getopt() should be compared to -1, not EOF, per | Tom Lane | 2002-01-10 | 1 | -4/+3 |
| | | | | | pgsql-hackers discussion of this date. | ||||
| * | Fix include paths for case of VPATH build. | Tom Lane | 2002-01-09 | 1 | -2/+2 |
| | | |||||
| * | Fix copy-and-paste mistake exposed by gcc warning. | Tom Lane | 2002-01-08 | 1 | -4/+4 |
| | | |||||
| * | Revert last change (CFLAGS+=-g). Probably was a mistake... | Peter Eisentraut | 2002-01-08 | 2 | -6/+2 |
| | | |||||
| * | Remove shift/reduce conflicts introduced by last change. | Tom Lane | 2002-01-08 | 1 | -17/+9 |
| | | |||||
| * | Fixed array pointers, no longer using void * in arithmetics. | Michael Meskes | 2002-01-08 | 5 | -13/+17 |
| | | |||||
| * | Fixed parser to accept initializing expressions starting with "(". | Michael Meskes | 2002-01-07 | 4 | -6/+18 |
| | | |||||
| * | Editorial review | Peter Eisentraut | 2002-01-07 | 1 | -2/+2 |
| | | |||||
| * | Bugfix for bug reported by Marcus Better (marcus@dactylis.com). When preforming | Barry Lind | 2002-01-05 | 3 | -14/+14 |
| | | | | | | | 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 | 2 | -4/+4 |
| | | | | | | 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 | 22 | -268/+393 |
| | | | | | | - Fixed several bugs concerning arrays of structs including a memory allocation bug. | ||||
| * | Czech translation updates from Karel Zak | Peter Eisentraut | 2001-12-21 | 2 | -2/+420 |
| | | |||||
| * | Remove duplicate lines from fouled up last commit (my DSL line failed | Thomas G. Lockhart | 2001-12-21 | 1 | -13/+1 |
| | | | | | during the CVS update, leaving locks and bad files). | ||||
| * | More comment for libpgeasy. | Bruce Momjian | 2001-12-14 | 1 | -5/+4 |
| | | |||||
