Methods Summary |
---|
private static void | excep()
throw new UnsupportedOperationException("Blob may not be manipulated from creating session");
|
public java.io.InputStream | getAsciiStream()
try {
if (needsReset) reader.reset();
}
catch (IOException ioe) {
throw new SQLException("could not reset reader");
}
needsReset = true;
return new ReaderInputStream(reader);
|
public java.io.Reader | getCharacterStream()
try {
if (needsReset) reader.reset();
}
catch (IOException ioe) {
throw new SQLException("could not reset reader");
}
needsReset = true;
return reader;
|
public java.lang.String | getSubString(long pos, int len)
excep(); return null;
|
public long | length()
return length;
|
public long | position(java.lang.String string, long pos)
excep(); return 0;
|
public long | position(java.sql.Clob colb, long pos)
excep(); return 0;
|
public java.io.OutputStream | setAsciiStream(long pos)
excep(); return null;
|
public java.io.Writer | setCharacterStream(long pos)
excep(); return null;
|
public int | setString(long pos, java.lang.String string)
excep(); return 0;
|
public int | setString(long pos, java.lang.String string, int i, int j)
excep(); return 0;
|
public void | truncate(long pos)
excep();
|