Lines Matching refs:length

48  * length of an SQL <code>BLOB</code> (Binary Large Object) value,
65 * @return length of the <code>BLOB</code> in bytes
67 * length of the <code>BLOB</code>
72 long length() throws SQLException;
77 * bytes. This <code>byte</code> array contains up to <code>length</code>
83 * @param length the number of consecutive bytes to be copied; the value
84 * for length must be 0 or greater
85 * @return a byte array containing up to <code>length</code>
90 * <code>BLOB</code> value; if pos is less than 1 or length is
97 byte[] getBytes(long pos, int length) throws SQLException;
160 * while writing the array of bytes, then the length of the <code>Blob</code>
164 * is greater then the length+1 of the <code>BLOB</code> value then the
192 * while writing the array of bytes, then the length of the <code>Blob</code>
196 * is greater then the length+1 of the <code>BLOB</code> value then the
226 * while writing to the stream, then the length of the <code>Blob</code>
230 * is greater then the length+1 of the <code>BLOB</code> value then the
250 * object represents to be <code>len</code> bytes in length.
253 * is greater then the length+1 of the <code>BLOB</code> value then the
258 * @param len the length, in bytes, to which the <code>BLOB</code> value
289 * starting with the byte specified by pos, which is length bytes in length.
293 * @param length the length in bytes of the partial value to be retrieved
296 * in the <code>Blob</code> or if pos + length is greater than the number of bytes
303 InputStream getBinaryStream(long pos, long length) throws SQLException;