A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
In-memory representation of a disk-based database row object with methods for serialization and de-serialization. A CachedRow is normally part of a circular double linked list which contains all of the Rows currently in the Cache for the database. It is unlinked from this list when it is freed from ...
}
public CachedObject get(RowInputInterface in) {
try {
return new RowAVLDisk(table, in);
} catch (IOException e) {
throw Error.error(ErrorCode.DATA_FILE_ERROR, e);
}
}
public CachedObject get(RowInputInterface in) {
try {
if (isCached) {
return new RowAVLDisk(table, in);
}
} catch (HsqlException e) {
return null;
} catch (IOException e1) {
return null;