]> granicus.if.org Git - postgresql/commit
Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.uk
authorPeter Mount <peter@retep.org.uk>
Wed, 31 Jan 2001 08:26:02 +0000 (08:26 +0000)
committerPeter Mount <peter@retep.org.uk>
Wed, 31 Jan 2001 08:26:02 +0000 (08:26 +0000)
commit8439a83d84fb159a790ed2b6d14d4151b9890857
tree867314ef119cc9a0713548c2ed0e676a124d0aad
parentdca0762efc1b4f84c0185b5464f94f7d66bbe566
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.
12 files changed:
src/interfaces/jdbc/CHANGELOG
src/interfaces/jdbc/example/basic.java
src/interfaces/jdbc/jdbc.jpx
src/interfaces/jdbc/org/postgresql/Connection.java
src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java
src/interfaces/jdbc/org/postgresql/jdbc2/Connection.java
src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java
src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java
src/interfaces/jdbc/org/postgresql/largeobject/BlobInputStream.java [new file with mode: 0644]
src/interfaces/jdbc/org/postgresql/largeobject/BlobOutputStream.java [new file with mode: 0644]
src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java