As the email posted to the announce and interfaces list, attached is a tar

Bruce Momjian <bruce@momjian.us>

Commit: 298682d9e0b0ec55d5f72cec1f4d43c23f2a1ac6
Author: Bruce Momjian <bruce@momjian.us>
Date: 1999-01-17T04:51:59Z
Releases: 7.1.1
As the email posted to the announce and interfaces list, attached is a tar
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

Files

PathChange+/−
src/interfaces/jdbc/CHANGELOG modified +40 −1
src/interfaces/jdbc/Implementation added +123 −0
src/interfaces/jdbc/Makefile modified +84 −37
src/interfaces/jdbc/makeVersion.java added +30 −0
src/interfaces/jdbc/postgresql/Connection.java modified +482 −800
src/interfaces/jdbc/postgresql/Driver.java modified +36 −3
src/interfaces/jdbc/postgresql/fastpath/Fastpath.java modified +8 −5
src/interfaces/jdbc/postgresql/Field.java modified +7 −6
src/interfaces/jdbc/postgresql/jdbc1/CallableStatement.java added +308 −0
src/interfaces/jdbc/postgresql/jdbc1/Connection.java added +366 −0
src/interfaces/jdbc/postgresql/jdbc1/DatabaseMetaData.java added +2526 −0
src/interfaces/jdbc/postgresql/jdbc1/PreparedStatement.java added +600 −0
src/interfaces/jdbc/postgresql/jdbc1/ResultSet.java added +776 −0
src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java added +426 −0
src/interfaces/jdbc/postgresql/jdbc1/Statement.java added +323 −0
src/interfaces/jdbc/postgresql/jdbc2/CallableStatement.java added +361 −0
src/interfaces/jdbc/postgresql/jdbc2/Connection.java added +418 −0
src/interfaces/jdbc/postgresql/jdbc2/DatabaseMetaData.java added +2623 −0
src/interfaces/jdbc/postgresql/jdbc2/PreparedStatement.java added +661 −0
src/interfaces/jdbc/postgresql/jdbc2/ResultSet.java added +1261 −0
src/interfaces/jdbc/postgresql/jdbc2/ResultSetMetaData.java added +435 −0
src/interfaces/jdbc/postgresql/jdbc2/Statement.java added +397 −0
src/interfaces/jdbc/postgresql/largeobject/LargeObject.java modified +34 −8
src/interfaces/jdbc/postgresql/largeobject/LargeObjectManager.java modified +1 −1
src/interfaces/jdbc/postgresql/ResultSet.java modified +22 −755
src/interfaces/jdbc/README modified +47 −39