From 2ee522954d0d634d520e6f10454a8c63ef004a00 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 25 Jan 1999 21:22:06 +0000 Subject: From: Peter T Mount 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 ;-) --- src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java') diff --git a/src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java b/src/interfaces/jdbc/postgresql/jdbc1/ResultSetMetaData.java index 95492e81b91..25878dd8c88 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 -- cgit v1.2.3