169170171172173174175176177178179
result.initRead(); context.setResult(result); } catch (IOException e) { throw new SQLExceptionWrapper(e); } finally { // autoCommitRead must be before freeRows in case freeRows // throws an exception try { context.close();
240241242243244245246247
is.close(); } return bytes; } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
630631632633634635636637638639640641642643644645646647648649650651652653
synchronized (_date) { try { return _date.parseDate(value); } catch (Exception e) { throw new SQLExceptionWrapper(e); } } } case BLOB: { String value = readBlobString(); synchronized (_date) { try { return _date.parseDate(value); } catch (Exception e) { throw new SQLExceptionWrapper(e); } } } default:
804805806807808809810811812813
while ((ch = is.read()) >= 0) { if (ch < 0x80) cb.append((char) ch); } } catch (IOException e) { throw new SQLExceptionWrapper(e); } return cb.toString(); }
829830831832833834835836837838
int ch; while ((ch = is.read()) >= 0) { bos.write(ch); } } catch (IOException e) { throw new SQLExceptionWrapper(e); } return bos.toByteArray(); }
214215216217218219220221
} } return true; } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
356357358359360361362363364365
564565566567568569570571572573574
synchronized (_date) { try { return _date.parseDate(value); } catch (Exception e) { throw new SQLExceptionWrapper(e); } } } default:
762763764765766767768769
} return (_initRow.initBlockRow(rows, queryContext) || nextBlock(rowLength - 1, rows, rowLength, queryContext)); } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
798799800801802803804805
} } return nextBlock(rowLength - 1, rows, rowLength, queryContext); } catch (IOException e) { throw new SQLExceptionWrapper(e); } }