Searched refs:SerialBlob (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialBlob.java37 * The <code>SerialBlob</code> class provides a constructor for creating
41 * to the client before a <code>SerialBlob</code> object
47 * <code>SerialBlob</code> methods make it possible to make a copy of a
48 * <code>SerialBlob</code> object as an array of bytes or as a stream.
50 * <code>Blob</code> object within a <code>SerialBlob</code> object
55 public class SerialBlob implements Blob, Serializable, Cloneable { class in inherits:Blob,Serializable,Cloneable
59 * value of this <code>SerialBlob</code> object.
66 * <code>SerialBlob</code> object is based.
71 * The number of bytes in this <code>SerialBlob</code> object's
78 * The orginal number of bytes in this <code>SerialBlob</cod
98 public SerialBlob(byte[] b) throws SerialException, SQLException { method in class:SerialBlob
128 public SerialBlob (Blob blob) throws SerialException, SQLException { method in class:SerialBlob
[all...]
H A DSerialStruct.java233 attribs[i] = new SerialBlob((Blob)attribs[i]);
H A DSerialArray.java105 * <code>SerialBlob</code>, <code>SerialClob</code>,
171 elements[i] = new SerialBlob((Blob)elements[i]);
232 * that is, a <code>SerialBlob</code>, <code>SerialClob</code>,
270 elements[i] = new SerialBlob((Blob)elements[i]);
H A DSQLOutputImpl.java462 * it to a serializable <code>SerialBlob</code> SQL <code>BLOB</code> value
475 attribs.add(new SerialBlob(x));
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java38 import javax.sql.rowset.serial.SerialBlob;
600 rsval = new SerialBlob((Blob)rsval);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java144 * <code>SerialArray</code>, <code>SerialClob</code>, <code>SerialBlob</code>
2783 * the <code>Blob</code> is represented as a <code>SerialBlob</code>
2813 * @see javax.sql.rowset.serial.SerialBlob
2820 params.put(Integer.valueOf(parameterIndex - 1), new SerialBlob(x));
2858 * @see javax.sql.rowset.serial.SerialBlob
3159 * <code>SerialBlob</code>, <code>SerialClob</code> and <code>SerialRef</code>
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java678 obj = new SerialBlob((Blob)obj);
6632 // SerialBlob will help in getting the byte array and storing it.
6637 getCurrentRow().setColumnObject(columnIndex, new SerialBlob(b));
7365 obj = new SerialBlob((Blob)obj);

Completed in 79 milliseconds