@author Fred Toussi (fredt@users dot sourceforge dot net) @version 2.2.9 @since 2.2.9
158159160161162163164165166167168
public CachedObject get(RowInputInterface in) { try { if (largeData) { return new RowAVLDiskLarge(table, in); } else { return new RowAVLDisk(table, in); } } catch (IOException e) { throw Error.error(ErrorCode.DATA_FILE_ERROR, e);
173174175176177178179180181182183
boolean tx) { Row row; if (largeData) { row = new RowAVLDiskLarge(table, (Object[]) object, this); } else { row = new RowAVLDisk(table, (Object[]) object, this); } add(session, row, tx);