Methods Summary |
---|
private static void | excep()
throw new UnsupportedOperationException("Blob may not be manipulated from creating session");
|
public java.io.InputStream | getBinaryStream()
try {
if (needsReset) stream.reset();
}
catch (IOException ioe) {
throw new SQLException("could not reset reader");
}
needsReset = true;
return stream;
|
public byte[] | getBytes(long pos, int len)
excep(); return null;
|
public long | length()
return length;
|
public long | position(java.sql.Blob blob, long pos)
excep(); return 0;
|
public long | position(byte[] bytes, long pos)
excep(); return 0;
|
public java.io.OutputStream | setBinaryStream(long pos)
excep(); return null;
|
public int | setBytes(long pos, byte[] bytes)
excep(); return 0;
|
public int | setBytes(long pos, byte[] bytes, int i, int j)
excep(); return 0;
|
public void | truncate(long pos)
excep();
|