102103104105106107108109110111
column.getName())); } } } } catch (IOException e) { throw new SQLExceptionWrapper(e); } finally { iter.free(); } }
155156157158159160161162
column.getName(), ("" + (value / BlockStore.BLOCK_SIZE) + "." + (value % BlockStore.BLOCK_SIZE)))); } } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
230231232233234235236237
splitRoot(_rootBlockId); } } catch (IOException e) { log.log(Level.FINE, e.toString(), e); throw new SQLExceptionWrapper(e.toString(), e); } }
753754755756757758759760
} } finally { rootBlock.free(); } } catch (IOException e) { throw new SQLExceptionWrapper(e.toString(), e); } }
507508509510511512513514
throws SQLException { try { validateIndexes(); } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
470471472473474475476477478479
Block block = _deallocateBlocks.remove(0); try { block.getStore().freeBlock(block.getBlockId()); } catch (IOException e) { throw new SQLExceptionWrapper(e); } } } }
62636465666768697071
throws SQLException { try { _factory.create(); } catch (java.io.IOException e) { throw new SQLExceptionWrapper(e); } queryContext.setRowUpdateCount(0); }
110111112113114115116117118119120
try { synchronized (_gmtDate) { date = _gmtDate.parseDate(str); } } catch (Exception e) { throw new SQLExceptionWrapper(e); } setDate(xa, block, rowOffset, date); } }
115116117118119120121122123124
_table.insert(queryContext, xa, _columns, _values); queryContext.setRowUpdateCount(1); } catch (java.io.IOException e) { throw new SQLExceptionWrapper(e); } finally { queryContext.close(); } }
302303304305306307308309
try { synchronized (_gmtDate) { return _gmtDate.parseDate(dateString); } } catch (Exception e) { throw new SQLExceptionWrapper(e); } }