CVSROOT: /home/projects/pgsql/cvsroot
Module name: pgsql
Changes by: peter@hub.org 01/01/31 03:26:02
Modified files:
src/interfaces/jdbc: CHANGELOG jdbc.jpx
src/interfaces/jdbc/example: basic.java
src/interfaces/jdbc/org/postgresql: Connection.java
src/interfaces/jdbc/org/postgresql/jdbc1: Statement.java
src/interfaces/jdbc/org/postgresql/jdbc2: Connection.java
PreparedStatement.java
ResultSet.java
Statement.java
src/interfaces/jdbc/org/postgresql/largeobject: LargeObject.java
Added files:
src/interfaces/jdbc/org/postgresql/largeobject:
BlobInputStream.java
BlobOutputStream.java
Log message:
Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.uk
- 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.