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); } } } }
240241242243244245246247
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); } }
9091929394959697
sourceOffset), table.getName(), _column.getName())); } } catch (IOException e) { throw new SQLExceptionWrapper(e); } }
241242243244245246247248
} catch (SQLException e) { throw e; } catch (Exception e) { log.log(Level.FINE, e.toString(), e); throw new SQLExceptionWrapper(e.toString(), e); } }
771772773774775776777778
} catch (RuntimeException e) { throw e; } catch (SQLException e) { throw e; } catch (Exception e) { throw new SQLExceptionWrapper(e.toString(), e); } }
110111112113114115116117118119120
try { synchronized (_gmtDate) { date = _gmtDate.parseDate(str); } } catch (Exception e) { throw new SQLExceptionWrapper(e); } setDate(xa, block, rowOffset, date); } }
514515516517518519520521
throws SQLException { try { validateIndexes(); } catch (IOException e) { throw new SQLExceptionWrapper(e); } }