62636465666768697071
throws SQLException { try { _factory.create(); } catch (java.io.IOException e) { throw new SQLExceptionWrapper(e); } queryContext.setRowUpdateCount(0); }
115116117118119120121122123124
_table.insert(queryContext, xa, _columns, _values); queryContext.setRowUpdateCount(1); } catch (java.io.IOException e) { throw new SQLExceptionWrapper(e); } finally { queryContext.close(); } }
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(); }
213214215216217218219220
} } return true; } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
355356357358359360361362363364
563564565566567568569570571572573
synchronized (_date) { try { return _date.parseDate(value); } catch (Exception e) { throw new SQLExceptionWrapper(e); } } } default:
248249250251252253254255
is.close(); } return bytes; } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
470471472473474475476477478479
Block block = _deallocateBlocks.remove(0); try { block.getStore().deallocateBlock(block.getBlockId()); } catch (IOException e) { throw new SQLExceptionWrapper(e); } } } }