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
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2005, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/jdbc4/AbstractJdbc4Clob.java,v 1.1 2006/06/08 10:34:51 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.jdbc4;
import java.io.Reader;
import java.sql.SQLException;
public class AbstractJdbc4Clob extends org.postgresql.jdbc3.AbstractJdbc3Clob
{
public AbstractJdbc4Clob(org.postgresql.PGConnection conn, int oid) throws SQLException
{
super(conn, oid);
}
public Reader getCharacterStream(long pos, long length) throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "getCharacterStream(long, long)");
}
public void free() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "free()");
}
}
|