mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
Initial restructuring to add jdbc3 support. There was a significant amount
of duplicated code between the jdbc1 and jdbc2. This checkin restructures the code so that the duplication is removed so that the jdbc3 support can be added without adding yet another copy of everything. Also many classes were renamed to avoid confusion with multiple different objects having the same name. The timestamp tests were also updated to add support for testing timestamp without time zone in addition to timestamp with time zone Modified Files: jdbc/Makefile jdbc/build.xml jdbc/example/ImageViewer.java jdbc/example/basic.java jdbc/example/blobtest.java jdbc/example/threadsafe.java jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/Field.java jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/fastpath/Fastpath.java jdbc/org/postgresql/jdbc1/CallableStatement.java jdbc/org/postgresql/jdbc1/DatabaseMetaData.java jdbc/org/postgresql/jdbc1/PreparedStatement.java jdbc/org/postgresql/jdbc2/Array.java jdbc/org/postgresql/jdbc2/CallableStatement.java jdbc/org/postgresql/jdbc2/DatabaseMetaData.java jdbc/org/postgresql/jdbc2/PreparedStatement.java jdbc/org/postgresql/jdbc2/UpdateableResultSet.java jdbc/org/postgresql/largeobject/LargeObjectManager.java jdbc/org/postgresql/largeobject/PGblob.java jdbc/org/postgresql/largeobject/PGclob.java jdbc/org/postgresql/test/jdbc2/BlobTest.java jdbc/org/postgresql/test/jdbc2/ConnectionTest.java jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java jdbc/org/postgresql/test/jdbc2/TimestampTest.java jdbc/org/postgresql/test/jdbc2/UpdateableResultTest.java jdbc/org/postgresql/util/Serialize.java Added Files: jdbc/org/postgresql/PGConnection.java jdbc/org/postgresql/PGStatement.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java jdbc/org/postgresql/jdbc1/Jdbc1Connection.java jdbc/org/postgresql/jdbc1/Jdbc1ResultSet.java jdbc/org/postgresql/jdbc1/Jdbc1Statement.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Connection.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java jdbc/org/postgresql/jdbc2/Jdbc2Connection.java jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java jdbc/org/postgresql/jdbc2/Jdbc2Statement.java Removed Files: jdbc/org/postgresql/Connection.java jdbc/org/postgresql/ResultSet.java jdbc/org/postgresql/Statement.java jdbc/org/postgresql/jdbc1/Connection.java jdbc/org/postgresql/jdbc1/ResultSet.java jdbc/org/postgresql/jdbc1/Statement.java jdbc/org/postgresql/jdbc2/Connection.java jdbc/org/postgresql/jdbc2/ResultSet.java jdbc/org/postgresql/jdbc2/Statement.java
This commit is contained in:
@@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException;
|
||||
/*
|
||||
* This class provides information about the database as a whole.
|
||||
*
|
||||
* $Id: DatabaseMetaData.java,v 1.47 2002/06/20 16:00:44 momjian Exp $
|
||||
* $Id: DatabaseMetaData.java,v 1.48 2002/07/23 03:59:55 barry Exp $
|
||||
*
|
||||
* <p>Many of the methods here return lists of information in ResultSets. You
|
||||
* can use the normal ResultSet methods such as getString and getInt to
|
||||
@@ -37,7 +37,7 @@ import org.postgresql.util.PSQLException;
|
||||
*/
|
||||
public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
{
|
||||
Connection connection; // The connection association
|
||||
Jdbc1Connection connection; // The connection association
|
||||
|
||||
// These define various OID's. Hopefully they will stay constant.
|
||||
static final int iVarcharOid = 1043; // OID for varchar
|
||||
@@ -46,7 +46,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
static final int iInt4Oid = 23; // OID for int4
|
||||
static final int VARHDRSZ = 4; // length for int4
|
||||
|
||||
public DatabaseMetaData(Connection conn)
|
||||
public DatabaseMetaData(Jdbc1Connection conn)
|
||||
{
|
||||
this.connection = conn;
|
||||
}
|
||||
@@ -196,7 +196,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
*/
|
||||
public String getDriverVersion() throws SQLException
|
||||
{
|
||||
return connection.this_driver.getVersion();
|
||||
return connection.getDriver().getVersion();
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -206,7 +206,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
*/
|
||||
public int getDriverMajorVersion()
|
||||
{
|
||||
return connection.this_driver.getMajorVersion();
|
||||
return connection.getDriver().getMajorVersion();
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -216,7 +216,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
*/
|
||||
public int getDriverMinorVersion()
|
||||
{
|
||||
return connection.this_driver.getMinorVersion();
|
||||
return connection.getDriver().getMinorVersion();
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1549,7 +1549,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
|
||||
v.addElement(tuple);
|
||||
}
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1627,7 +1627,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
|
||||
// add query loop here
|
||||
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1721,7 +1721,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
|
||||
byte remarks[] = null;
|
||||
|
||||
if (((org.postgresql.ResultSet)dr).getTupleCount() == 1)
|
||||
if (((AbstractJdbc1ResultSet)dr).getTupleCount() == 1)
|
||||
{
|
||||
dr.next();
|
||||
remarks = dr.getBytes(1);
|
||||
@@ -1762,7 +1762,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
v.addElement(tuple);
|
||||
}
|
||||
r.close();
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
// This array contains the valid values for the types argument
|
||||
@@ -1809,7 +1809,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
f[0] = new Field(connection, "TABLE_SCHEM", iVarcharOid, 32);
|
||||
tuple[0] = "".getBytes();
|
||||
v.addElement(tuple);
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -1854,7 +1854,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
tuple[0] = getTableTypes[i][0].getBytes();
|
||||
v.addElement(tuple);
|
||||
}
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2050,7 +2050,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
}
|
||||
r.close();
|
||||
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2113,7 +2113,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
//v.addElement(tuple);
|
||||
}
|
||||
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2203,7 +2203,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
f[6] = new Field(connection, "DECIMAL_DIGITS", iInt2Oid, 2);
|
||||
f[7] = new Field(connection, "PSEUDO_COLUMN", iInt2Oid, 2);
|
||||
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2413,7 +2413,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
while (hasMore);
|
||||
}
|
||||
|
||||
return new ResultSet(connection, f, tuples, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, tuples, "OK", 1);
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -2692,7 +2692,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
v.addElement(tuple);
|
||||
}
|
||||
rs.close();
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
throw new PSQLException("postgresql.metadata.unavailable");
|
||||
@@ -2832,7 +2832,7 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
}
|
||||
}
|
||||
|
||||
return new ResultSet(connection, f, v, "OK", 1);
|
||||
return new Jdbc1ResultSet(connection, f, v, "OK", 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user