diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-01-25 21:22:06 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-01-25 21:22:06 +0000 |
commit | 2ee522954d0d634d520e6f10454a8c63ef004a00 (patch) | |
tree | 2b1b3b0756fb3ad81d689008dd5465cbd1c56389 /src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java | |
parent | 1401f63dd15fbc073775fb0279c3b7153ef95f66 (diff) | |
download | postgresql-2ee522954d0d634d520e6f10454a8c63ef004a00.tar.gz |
From: Peter T Mount <peter@retep.org.uk>
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 ;-)
Diffstat (limited to 'src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java')
-rw-r--r-- | src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java b/src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java index 95492e81b9..25878dd8c8 100644 --- a/src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java +++ b/src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java @@ -6,10 +6,15 @@ package postgresql.jdbc1; // postgresql.jdbc2 package. import java.lang.*; -import java.sql.*; import java.util.*; import postgresql.*; +// We explicitly import classes here as the original line: +//import java.sql.*; +// causes javac to get confused. +import java.sql.SQLException; +import java.sql.Types; + /** * A ResultSetMetaData object can be used to find out about the types and * properties of the columns in a ResultSet |