272273274275276277278
* <code>CLOB</code> value */ public java.io.InputStream getAsciiStream() throws SQLException { // Validity is checked in getCharacterStream(). return new ReaderToAscii(getCharacterStream()); }
343344345346347348349
public java.io.InputStream getAsciiStream() throws SQLException { //call checkValidity to exit by throwing a SQLException if //the Clob object has been freed by calling free() on it checkValidity(); return new ReaderToAscii(getCharacterStream()); }
270271272273274275276
269270271272273274275
291292293294295296297
* <code>CLOB</code> value */ public java.io.InputStream getAsciiStream() throws SQLException { return new ReaderToAscii(getCharacterStream()); }
304305306307308309310