aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc
Commit message (Collapse)AuthorAge
* Some minor bug fixesPeter Mount1999-06-27
|
* Some fixes supplied by Jon Nielsen jonfn@image.dkPeter Mount1999-06-23
|
* Forgot the CHANGELOGPeter Mount1999-05-18
|
* Internationalisation of error messagesPeter Mount1999-05-18
|
* Transactions in ImageViewerPeter Mount1999-05-18
|
* Fixed Internationalization of error messages.Peter Mount1999-05-17
|
* Minor bug fixes. Replaced DateStyle support with ISO.Peter Mount1999-05-17
|
* Implement UpdateCountPeter Mount1999-04-11
|
* The isWritable method in ResultSetMetaData returns the logicallyBruce Momjian1999-03-14
| | | | | | incorrect result. This bug goes back to at least 6.3. Alvin
* There are errors in the PGmoney class in the conversion routines overBruce Momjian1999-03-14
| | | | | | | | | | | | the handling of negative numbers and commas. The attached path attempts to fix these. However the getValue method does not yet insert commas into the generated string. Also in getValue there is an incorrect assumption that the currency symbol is '$', it should of course be '£'!. I have no idea on how to go about fixing this one. Alvin
* From: Peter T Mount <peter@retep.org.uk>Marc G. Fournier1999-01-25
| | | | | | | | | This implements some of the JDBC2 methods, fixes a bug introduced into the JDBC1 portion of the driver, and introduces a new example, showing how to use the CORBA ORB thats in Java2 with JDBC. The Tar file contains the new files, the diff the changes to the others. CHANGELOG is separate as I forgot to make a .orig ;-)
* As the email posted to the announce and interfaces list, attached is a tarBruce Momjian1999-01-17
| | | | | | | | | | | | | | | | | | | | 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
* Remove various files that were moved to various subdirectories...Marc G. Fournier1998-11-01
| | | | Requested by: Peter T Mount peter@retep.org.uk
* This patch updates the ImageViewer example to use Multiple Threading.Bruce Momjian1998-10-12
| | | | | | | | | | | | | | When importing an image into the database, the example now fires off a new Thread, which imports the image in the background. This also means that the application doesn't freeze on the user, and they can still browse the images in the database, while the upload is running. This now makes the ImageViewer a true example on how to use Threads (the threadtest class is just that - a test). Peter
* Add changelog.Bruce Momjian1998-10-08
|
* Just a quick patch. This makes the JDBC driver thread safe, which is anBruce Momjian1998-10-08
| | | | | | | | | | 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
* rename java file for Peter.Bruce Momjian1998-09-12
|
* New stuff from Peter Mount for jdbc.Bruce Momjian1998-09-03
|
* New stuff for 6.4 jdbc.Bruce Momjian1998-09-03
| | | | Peter mount
* Added missing file.Bruce Momjian1998-06-16
|
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-06-03
| | | | | | | | | | | | | | | | | | | | | | 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>Marc G. Fournier1998-06-03
| | | | | | | | | | | | | | | | | | | | | | 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-18
| | | | | | | | | 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>)
* Hi,Bruce Momjian1998-04-06
| | | | | | | | | | | | | | | | | | | | | | Attached you'll find a (big) patch that fixes make dep and make depend in all Makefiles where I found it to be appropriate. It also removes the dependency in Makefile.global for NAMEDATALEN and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh a little smarter. This no longer requires initdb.sh that is turned into initdb with a sed script when installing Postgres, hence initdb.sh should be renamed to initdb (after the patch has been applied :-) ) This patch is against the 6.3 sources, as it took a while to complete. Please review and apply, Cheers, Jeroen van Vianen
* This patch fixes a couple of minor bugs:Bruce Momjian1998-03-20
| | | | | | | | | | | | | | 1) DatabaseMetaData.getPrimaryKeys() would fail saying that there is no table t. 2) PreparedStatement.getObject() was missing some break statements, which was causing updates not to work with JBuilder (supplied by Aaron Dunlop). jdbc fixes from Peter.
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-03-15
| | | | | | | | | | | | | | | Ok, this fixes three things: 1. It seems (from tests submitted by two people with JBuilder) that JBuilder expects a responce from ResultSetMetaData.getPrecision() & getScale() when used on non numeric types. This patch makes these methods return 0, instead of throwing an exception. 2. Fixes a small bug where getting the postgresql type name returns null. 3. Fixes a problem with ResultSet.getObject() where getting it's string value returns null if you case the object as (PGobject), but returns the value if you case it as it's self.
* The getColumns() method in DataBaseMetaData.java returns a column sizeMarc G. Fournier1998-02-22
| | | | | | of -1 for varchar's. From: CNT systemen BV <cntsys@cistron.nl>
* Missign a comma...Marc G. Fournier1998-02-20
| | | | From: AA van Raalte <alvin@camberlo.demon.co.uk>
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-02-09
| | | | | | | | | | | 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()
* This was a new class that was introduced last weekend. I'm attaching theMarc G. Fournier1998-02-09
| | | | | | source here. It goes in the src/interfaces/jdbc/postgresql/util directory Marc, can you make sure this is in the distribution, Thanks
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1998-02-02
| | | | | | | | | | | | | | | | [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!).
* Should fix it all, Peter?Marc G. Fournier1998-01-13
|
* Oops...missed over half the patch :(Marc G. Fournier1998-01-13
|
* Peter's Mega-Patch for JDBC...Marc G. Fournier1998-01-11
| | | | see README_6.3 for list of changes
* Update of Java driver from Peter Mount.Bruce Momjian1997-11-07
|
* Fix for java to allow password, european dates,from Peter T MountBruce Momjian1997-10-30
|
* Fix for java timestamp type from teunis@sigil.computersupportcentre.comBruce Momjian1997-10-30
|
* From: Peter T Mount <patches@maidast.demon.co.uk>Marc G. Fournier1997-09-29
| | | | | | | | This patch fixes a few results in DatabaseMetaData, and updates the README and TODO files (the later being a new file). The TODO file lists the things that need to be looked into after 6.2 is released, and describes the problem with Large Objects.
* From: CNT systemen BV <cntsys@cistron.nl>Marc G. Fournier1997-09-28
| | | | | | | | I've found a problem in the Postgresql jdbc driver. "ReceiveInteger" shifts a received byte right instead of left. This means that only the least significant byte is read into the int. Reviewed by: Peter T Mount <patches@maidast.demon.co.uk>
* Get these two files finally committed for Peter...sorry for delay :(Marc G. Fournier1997-09-26
|
* Bring in Peter's changes...finally :(Marc G. Fournier1997-09-20
|
* Update patch from Peter <patches@maidast.demon.co.uk>Marc G. Fournier1997-08-31
|
* Bring in Adrian's JDBC driver as an interfaceMarc G. Fournier1997-08-16