summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/postgresql/Connection.java
Commit message (Collapse)AuthorAgeFilesLines
* Remove postgresql jdbc files, per Peter.Bruce Momjian2001-02-131-744/+0
|
* Some late patches from Jens Glaser (jens@jens.de). These upgrade the protocolPeter Mount1999-09-151-5/+39
| | | | to version 2, and fixes ResultSetMetaData.getColumnDisplaySize().
* An abstract declaration for the close() method was missed out of the previousPeter Mount1999-09-141-1/+3
| | | | commit to CVS.
* Patches for 6.5.2Peter Mount1999-09-141-1/+14
|
* Internationalisation of error messagesPeter Mount1999-05-181-22/+22
|
* Minor bug fixes. Replaced DateStyle support with ISO.Peter Mount1999-05-171-63/+28
|
* Implement UpdateCountPeter Mount1999-04-111-3/+13
|
* As the email posted to the announce and interfaces list, attached is a tarBruce Momjian1999-01-171-800/+482
| | | | | | | | | | | | | | | | | | | | file containing the latest version of the JDBC driver, allowing it to be compiled and used under JDK 1.2 and later. NB: None (well almost none) of the new methods actually do anything. This release only handles getting it to compile and run. Now this is done, I'll start working on implementing the new stuff. Now this tar file replaces everything under src/interfaces/jdbc. I had to do it this way, rather than diffs, because most of the classes under the postgresql subdirectory have moved to a new directory under that one, to enable the support of the two JDBC standards. Here's a list of files in the tar file. Any file not listed here (in the postgresql directory) will have to be deleted, otherwise it could cause the driver to fail: Peter Mount
* Just a quick patch. This makes the JDBC driver thread safe, which is anBruce Momjian1998-10-081-1/+5
| | | | | | | | | | important step towards making the driver compliant, and means that for some Java applications and servlets, only a single database connection is needed, so in a sence this is a nice little show stopper for 6.4 (and should still be backward compatible to 6.3.2). Peter
* New stuff from Peter Mount for jdbc.Bruce Momjian1998-09-031-67/+38
|
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-06-031-8/+82
| | | | | | | | | | | | | | | | | | | | | | Bug fixes: PreparedStatement.setObject didn't handle short's ResultSet.getDate() now handles null dates (returns null rather than a NullPointerException) ResultSetMetaData.getPrecision() now returns 0 for VARCHAR New features: Field now caches the typename->oid in a Hashtable to speed things up. It removes the need for some unnecessary queries to the backend. PreparedStatement.toString() now returns the sql statement that it will send to the backend. Before it did nothing. DatabaseMetaData.getTypeInfo() now does something.
* From: Peter T Mount <patches@maidast.demon.co.uk>REL6_3_2Marc G. Fournier1998-04-181-0/+6
| | | | | | | | | This fixes a problem in ResultSet.getDate() when the column is NULL (reported by Vincent Partington <Vincent.Partington@nmg.nl>) And fixes a problem with Field's (ResultSet.getObject() was proving to be slow as it repetedly send queries for oid -> name mapping - fixed by creating a cache. (reported by Mario Ellebrecht <ellebrec@nads.de>)
* Missign a comma...Marc G. Fournier1998-02-201-1/+1
| | | | From: AA van Raalte <alvin@camberlo.demon.co.uk>
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-02-091-0/+8
| | | | | | | | | | | This patch fixes the following: * Fixes minor bug found in DatabaseMetaData.getTables() where it doesn't handle default table types. * It now reports an error if the client opens a database using properties, and either the user or password properties are missing. This should make the recent problem with Servlets easier to find. * Commented out obsolete property in Driver.getPropertyInfo()
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-02-021-39/+130
| | | | | | | | | | | | | | | | [This is a repost - it supercedes the previous one. It fixes the patch so it doesn't bread aix port, plus there's a file missing out of the original post because difforig doesn't pick up new files. It's now attached. peter] This patch brings the JDBC driver up to the current protocol spec. Basically, the backend now tells the driver what authentication scheme to use. The patch also fixes a performance problem with large objects. In the buffer manager, each fastpath call was sending multiple Notifications to the backend (sometimes more data in the form of notifications were being sent than blob data!).
* Peter's Mega-Patch for JDBC...Marc G. Fournier1998-01-111-25/+219
| | | | see README_6.3 for list of changes
* Update of Java driver from Peter Mount.Bruce Momjian1997-11-071-5/+22
|
* Fix for java to allow password, european dates,from Peter T MountBruce Momjian1997-10-301-6/+71
|
* Bring in Peter's changes...finally :(Marc G. Fournier1997-09-201-247/+9
|
* Update patch from Peter <patches@maidast.demon.co.uk>Marc G. Fournier1997-08-311-807/+806
|
* Bring in Adrian's JDBC driver as an interfaceMarc G. Fournier1997-08-161-0/+847