コード例 #1
0
ファイル: JdbcClob.java プロジェクト: jackerxff/H2-Research
 /**
  * Returns the input stream.
  *
  * @return the input stream
  */
 public InputStream getAsciiStream() throws SQLException {
   try {
     debugCodeCall("getAsciiStream");
     checkClosed();
     String s = value.getString();
     return IOUtils.getInputStreamFromString(s);
   } catch (Exception e) {
     throw logAndConvert(e);
   }
 }