| java.lang.Object org.h2.message.TraceObject org.h2.jdbc.JdbcBlob
Method Summary | |
public void | free() Release all resources of this object. | public InputStream | getBinaryStream() Returns the input stream. | public InputStream | getBinaryStream(long pos, long length) [Not supported] Returns the input stream, starting from an offset. | public byte[] | getBytes(long pos, int length) Returns some bytes of the object. | public long | length() Returns the length. | public long | position(byte[] pattern, long start) [Not supported] Searches a pattern and return the position. | public long | position(Blob blobPattern, long start) [Not supported] Searches a pattern and return the position. | public OutputStream | setBinaryStream(long pos) [Not supported] Returns an output stream. | public int | setBytes(long pos, byte[] bytes) [Not supported] Sets some bytes of the object. | public int | setBytes(long pos, byte[] bytes, int offset, int len) [Not supported] Sets some bytes of the object. | public String | toString() | public void | truncate(long len) [Not supported] Truncates the object. |
getBinaryStream | public InputStream getBinaryStream(long pos, long length) throws SQLException(Code) | | [Not supported] Returns the input stream, starting from an offset.
|
getBytes | public byte[] getBytes(long pos, int length) throws SQLException(Code) | | Returns some bytes of the object.
Parameters: pos - the index, the first byte is at position 1 Parameters: length - the number of bytes the bytes, at most length bytes |
position | public long position(byte[] pattern, long start) throws SQLException(Code) | | [Not supported] Searches a pattern and return the position.
Parameters: pattern - the pattern to search Parameters: start - the index, the first byte is at position 1 the position (first byte is at position 1), or -1 for not found |
position | public long position(Blob blobPattern, long start) throws SQLException(Code) | | [Not supported] Searches a pattern and return the position.
Parameters: blobPattern - the pattern to search Parameters: start - the index, the first byte is at position 1 the position (first byte is at position 1), or -1 for not found |
setBytes | public int setBytes(long pos, byte[] bytes) throws SQLException(Code) | | [Not supported] Sets some bytes of the object.
|
setBytes | public int setBytes(long pos, byte[] bytes, int offset, int len) throws SQLException(Code) | | [Not supported] Sets some bytes of the object.
|
truncate | public void truncate(long len) throws SQLException(Code) | | [Not supported] Truncates the object.
Parameters: len - the new length |
Fields inherited from org.h2.message.TraceObject | final public static int CALLABLE_STATEMENTCONNECTIONDATABASE_META_DATAPREPARED_STATEMENTRESULT_SETRESULT_SET_META_DATASAVEPOINTSQL_EXCEPTIONSTATEMENTBLOBCLOBPARAMETER_META_DATA(Code)(Java Doc) final public static int DATA_SOURCEXA_DATA_SOURCEXIDARRAY(Code)(Java Doc)
|
|
|