1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2005, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/jdbc4/AbstractJdbc4Connection.java,v 1.2 2006/10/31 06:12:46 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.jdbc4;
import java.sql.*;
import java.util.Properties;
abstract class AbstractJdbc4Connection extends org.postgresql.jdbc3.AbstractJdbc3Connection
{
public AbstractJdbc4Connection(String host, int port, String user, String database, Properties info, String url) throws SQLException {
super(host, port, user, database, info, url);
}
public Clob createClob() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createClob()");
}
public Blob createBlob() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createBlob()");
}
public NClob createNClob() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createNClob()");
}
public SQLXML createSQLXML() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createSQLXML()");
}
public Struct createStruct(String typeName, Object[] attributes) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createStruct(String, Object[])");
}
public Array createArrayOf(String typeName, Object[] elements) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createArrayOf(String, Object[])");
}
public boolean isValid(int timeout) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "isValid(int)");
}
public void setClientInfo(String name, String value) throws SQLClientInfoException
{
throw new SQLClientInfoException("Not implemented.", null);
}
public void setClientInfo(Properties properties) throws SQLClientInfoException
{
throw new SQLClientInfoException("Not implemented.", null);
}
public String getClientInfo(String name) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "getClientInfo(String)");
}
public Properties getClientInfo() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "getClientInfo()");
}
public <T> T createQueryObject(Class<T> ifc) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "createQueryObject(Class<T>)");
}
public boolean isWrapperFor(Class<?> iface) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "isWrapperFor(Class<?>)");
}
public <T> T unwrap(Class<T> iface) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "unwrap(Class<T>)");
}
}
|