summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/example
AgeCommit message (Collapse)Author
2001-01-31Wed Jan 31 08:46:00 GMT 2001 peter@retep.org.ukPeter Mount
- Some minor additions to Statement to make our own extensions more portable. - Statement.close() will now call ResultSet.close() rather than just dissasociating with it.
2001-01-31Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.ukPeter Mount
- Fixed bug where Statement.setMaxRows() was a global setting. Now limited to just itself. - Changed LargeObject.read(byte[],int,int) to return the actual number of bytes read (used to be void). - LargeObject now supports InputStream's! - PreparedStatement.setBinaryStream() now works! - ResultSet.getBinaryStream() now returns an InputStream that doesn't copy the blob into memory first! - Connection.isClosed() now tests to see if the connection is still alive rather than if it thinks it's alive.
2000-10-12Major update part I involving delayed patches, reworked Makefile, and howPeter Mount
the versioning works. There's also a new utils directory used by Makefile
2000-09-12Attached are a patch to allow the charset encoding used by the JDBCBruce Momjian
driver to be set, and a description of said patch. Please refer to the latter for more information. William -- William Webber william@peopleweb.net.au
2000-06-06Added org/postgresql/DriverClass.java to the list of files removed by make ↵Peter Mount
clean (it's dynamically built) Fixed Statement, so that the update count is valid when an SQL DELETE operation is done. While fixing the update count, made it easier to get the OID of the last insert as well. Example is in example/basic.java
2000-05-05ImageViewer transaction fixesPeter Mount
2000-05-03Minor fixes ready for 7.0Peter Mount
2000-04-26Another attemptPeter Mount
1999-05-18Transactions in ImageViewerPeter Mount
1999-05-17Fixed Internationalization of error messages.Peter Mount
1999-04-11Implement UpdateCountPeter Mount
1999-01-25From: Peter T Mount <peter@retep.org.uk>Marc G. Fournier
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 ;-)
1998-10-12This patch updates the ImageViewer example to use Multiple Threading.Bruce Momjian
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
1998-10-08Just a quick patch. This makes the JDBC driver thread safe, which is anBruce Momjian
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
1998-09-03New stuff from Peter Mount for jdbc.Bruce Momjian
1998-09-03New stuff for 6.4 jdbc.Bruce Momjian
Peter mount
1998-01-13Oops...missed over half the patch :(Marc G. Fournier