mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +03:00
Added support for JDBC3. The driver will now build under JDBC3 (i.e. Java 1.4).
This concludes my changes that restructured the code to support JDBC3. The jdbc unit tests were also resturctured to allow different tests between jdbc2 and jdbc3, although currently make check (aka ant test) for JDBC3 just runs the JDBC2 tests. Of special note the largeobject/PGblob and PGclob classes have been moved under the jdbc2/jdbc3 specific directories as they now differ by jdbc version. Also note that this checkin removes the PostgresqlDataSource and files in the xa directory. A recent checkin has added new datasource support that replaces the functionality provided by these classes. Modified Files: jdbc/build.xml jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSetMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Connection.java jdbc/org/postgresql/jdbc2/AbstractJdbc2DatabaseMetaData.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSetMetaData.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java jdbc/org/postgresql/jdbc2/Array.java jdbc/org/postgresql/jdbc2/Jdbc2CallableStatement.java jdbc/org/postgresql/jdbc2/Jdbc2Connection.java jdbc/org/postgresql/jdbc2/Jdbc2DatabaseMetaData.java jdbc/org/postgresql/jdbc2/Jdbc2PreparedStatement.java jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java jdbc/org/postgresql/jdbc2/Jdbc2ResultSetMetaData.java jdbc/org/postgresql/jdbc2/Jdbc2Statement.java jdbc/org/postgresql/test/jdbc2/BatchExecuteTest.java jdbc/org/postgresql/test/jdbc2/BlobTest.java jdbc/org/postgresql/test/jdbc2/CallableStmtTest.java jdbc/org/postgresql/test/jdbc2/ConnectionTest.java jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java jdbc/org/postgresql/test/jdbc2/DateTest.java jdbc/org/postgresql/test/jdbc2/DriverTest.java jdbc/org/postgresql/test/jdbc2/JBuilderTest.java jdbc/org/postgresql/test/jdbc2/MiscTest.java jdbc/org/postgresql/test/jdbc2/ResultSetTest.java jdbc/org/postgresql/test/jdbc2/TimeTest.java jdbc/org/postgresql/test/jdbc2/TimestampTest.java jdbc/org/postgresql/test/jdbc2/UpdateableResultTest.java Added Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2Blob.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Clob.java jdbc/org/postgresql/jdbc2/Jdbc2Blob.java jdbc/org/postgresql/jdbc2/Jdbc2Clob.java jdbc/org/postgresql/jdbc3/AbstractJdbc3Blob.java jdbc/org/postgresql/jdbc3/AbstractJdbc3Clob.java jdbc/org/postgresql/jdbc3/AbstractJdbc3Connection.java jdbc/org/postgresql/jdbc3/AbstractJdbc3DatabaseMetaData.java jdbc/org/postgresql/jdbc3/AbstractJdbc3ResultSet.java jdbc/org/postgresql/jdbc3/AbstractJdbc3Statement.java jdbc/org/postgresql/jdbc3/Jdbc3Blob.java jdbc/org/postgresql/jdbc3/Jdbc3CallableStatement.java jdbc/org/postgresql/jdbc3/Jdbc3Clob.java jdbc/org/postgresql/jdbc3/Jdbc3Connection.java jdbc/org/postgresql/jdbc3/Jdbc3DatabaseMetaData.java jdbc/org/postgresql/jdbc3/Jdbc3PreparedStatement.java jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java jdbc/org/postgresql/jdbc3/Jdbc3ResultSetMetaData.java jdbc/org/postgresql/jdbc3/Jdbc3Statement.java jdbc/org/postgresql/test/TestUtil.java jdbc/org/postgresql/test/jdbc2/Jdbc2TestSuite.java jdbc/org/postgresql/test/jdbc3/Jdbc3TestSuite.java Removed Files: jdbc/org/postgresql/PostgresqlDataSource.java jdbc/org/postgresql/largeobject/PGblob.java jdbc/org/postgresql/largeobject/PGclob.java jdbc/org/postgresql/test/JDBC2Tests.java jdbc/org/postgresql/xa/ClientConnection.java jdbc/org/postgresql/xa/TwoPhaseConnection.java jdbc/org/postgresql/xa/TxConnection.java jdbc/org/postgresql/xa/XAConnectionImpl.java jdbc/org/postgresql/xa/XADataSourceImpl.java
This commit is contained in:
@@ -0,0 +1,181 @@
|
||||
package org.postgresql.jdbc3;
|
||||
|
||||
|
||||
import java.sql.*;
|
||||
import java.util.Vector;
|
||||
|
||||
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc3/Attic/AbstractJdbc3ResultSet.java,v 1.1 2002/08/14 20:35:39 barry Exp $
|
||||
* This class defines methods of the jdbc3 specification. This class extends
|
||||
* org.postgresql.jdbc2.AbstractJdbc2ResultSet which provides the jdbc2
|
||||
* methods. The real Statement class (for jdbc3) is org.postgresql.jdbc3.Jdbc3ResultSet
|
||||
*/
|
||||
public abstract class AbstractJdbc3ResultSet extends org.postgresql.jdbc2.AbstractJdbc2ResultSet {
|
||||
|
||||
public AbstractJdbc3ResultSet(org.postgresql.PGConnection conn, Statement statement, org.postgresql.Field[] fields, Vector tuples, String status, int updateCount, long insertOID, boolean binaryCursor) {
|
||||
super (conn, statement, fields, tuples, status, updateCount, insertOID, binaryCursor);
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the value of the designated column in the current row
|
||||
* of this <code>ResultSet</code> object as a <code>java.net.URL</code>
|
||||
* object in the Java programming language.
|
||||
*
|
||||
* @param columnIndex the index of the column 1 is the first, 2 is the second,...
|
||||
* @return the column value as a <code>java.net.URL</code> object;
|
||||
* if the value is SQL <code>NULL</code>,
|
||||
* the value returned is <code>null</code> in the Java programming language
|
||||
* @exception SQLException if a database access error occurs,
|
||||
* or if a URL is malformed
|
||||
* @since 1.4
|
||||
*/
|
||||
public java.net.URL getURL(int columnIndex) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves the value of the designated column in the current row
|
||||
* of this <code>ResultSet</code> object as a <code>java.net.URL</code>
|
||||
* object in the Java programming language.
|
||||
*
|
||||
* @param columnName the SQL name of the column
|
||||
* @return the column value as a <code>java.net.URL</code> object;
|
||||
* if the value is SQL <code>NULL</code>,
|
||||
* the value returned is <code>null</code> in the Java programming language
|
||||
* @exception SQLException if a database access error occurs
|
||||
* or if a URL is malformed
|
||||
* @since 1.4
|
||||
*/
|
||||
public java.net.URL getURL(String columnName) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Ref</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnIndex the first column is 1, the second is 2, ...
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateRef(int columnIndex, java.sql.Ref x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Ref</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnName the name of the column
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateRef(String columnName, java.sql.Ref x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Blob</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnIndex the first column is 1, the second is 2, ...
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateBlob(int columnIndex, java.sql.Blob x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Blob</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnName the name of the column
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateBlob(String columnName, java.sql.Blob x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Clob</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnIndex the first column is 1, the second is 2, ...
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateClob(int columnIndex, java.sql.Clob x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Clob</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnName the name of the column
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateClob(String columnName, java.sql.Clob x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Array</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnIndex the first column is 1, the second is 2, ...
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateArray(int columnIndex, java.sql.Array x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the designated column with a <code>java.sql.Array</code> value.
|
||||
* The updater methods are used to update column values in the
|
||||
* current row or the insert row. The updater methods do not
|
||||
* update the underlying database; instead the <code>updateRow</code> or
|
||||
* <code>insertRow</code> methods are called to update the database.
|
||||
*
|
||||
* @param columnName the name of the column
|
||||
* @param x the new column value
|
||||
* @exception SQLException if a database access error occurs
|
||||
* @since 1.4
|
||||
*/
|
||||
public void updateArray(String columnName, java.sql.Array x) throws SQLException {
|
||||
throw org.postgresql.Driver.notImplemented();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user