KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > sql > rowset > serial > SerialBlob

javax.sql.rowset.serial
Class SerialBlob

java.lang.Object
  extended by javax.sql.rowset.serial.SerialBlob
All Implemented Interfaces:
Serializable, Cloneable, Blob
See Also:
Source Code

public InputStream getBinaryStream()
                            throws SerialException
See Also:
setBinaryStream(long), Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public byte[] getBytes(long pos,
                       int length)
                throws SerialException
See Also:
Blob.setBytes(long, byte[])
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public long length()
            throws SerialException
See Also:
Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public long position(byte[] pattern,
                     long start)
              throws SerialException,
                     SQLException
See Also:
Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public long position(Blob pattern,
                     long start)
              throws SerialException,
                     SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SerialBlob(byte[] b)
           throws SerialException,
                  SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SerialBlob(Blob blob)
           throws SerialException,
                  SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public OutputStream setBinaryStream(long pos)
                             throws SerialException,
                                    SQLException
See Also:
getBinaryStream(), Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int setBytes(long pos,
                    byte[] bytes)
             throws SerialException,
                    SQLException
See Also:
getBytes(long, int), Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int setBytes(long pos,
                    byte[] bytes,
                    int offset,
                    int length)
             throws SerialException,
                    SQLException
See Also:
getBytes(long, int), Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void truncate(long length)
              throws SerialException
See Also:
Blob
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags