org.axiondb.jdbc
Interface AxionBlob
- All Superinterfaces:
- java.sql.Blob
- All Known Implementing Classes:
- AbstractAxionBlob, BlobSource, ByteArrayBlob
public interface AxionBlob
- extends java.sql.Blob
The JDBC Blob
interface, including the
JDBC 2 writing methods.
- Version:
- $Revision: 1.4 $ $Date: 2002/12/16 23:34:55 $
Methods inherited from interface java.sql.Blob |
free, getBinaryStream |
getBinaryStream
java.io.InputStream getBinaryStream()
throws java.sql.SQLException
- Specified by:
getBinaryStream
in interface java.sql.Blob
- Throws:
java.sql.SQLException
getBytes
byte[] getBytes(long pos,
int length)
throws java.sql.SQLException
- Specified by:
getBytes
in interface java.sql.Blob
- Throws:
java.sql.SQLException
length
long length()
throws java.sql.SQLException
- Specified by:
length
in interface java.sql.Blob
- Throws:
java.sql.SQLException
position
long position(java.sql.Blob pattern,
long start)
throws java.sql.SQLException
- Specified by:
position
in interface java.sql.Blob
- Throws:
java.sql.SQLException
position
long position(byte[] pattern,
long start)
throws java.sql.SQLException
- Specified by:
position
in interface java.sql.Blob
- Throws:
java.sql.SQLException
setBinaryStream
java.io.OutputStream setBinaryStream(long pos)
throws java.sql.SQLException
- Specified by:
setBinaryStream
in interface java.sql.Blob
- Throws:
java.sql.SQLException
setBytes
int setBytes(long pos,
byte[] bytes)
throws java.sql.SQLException
- Specified by:
setBytes
in interface java.sql.Blob
- Throws:
java.sql.SQLException
setBytes
int setBytes(long pos,
byte[] bytes,
int offset,
int len)
throws java.sql.SQLException
- Specified by:
setBytes
in interface java.sql.Blob
- Throws:
java.sql.SQLException
truncate
void truncate(long len)
throws java.sql.SQLException
- Specified by:
truncate
in interface java.sql.Blob
- Throws:
java.sql.SQLException