22 namespace Deveel.Data.Caching {
25 var rowId =
new RowId(tableId, rowNumber);
26 var key =
new CellKey(database,
new CellId(rowId, columnOffset));
31 var rowId =
new RowId(tableId, rowNumber);
32 var key =
new CellKey(database,
new CellId(rowId, columnOffset));
36 public static void Remove(
this ITableCellCache cache,
string database,
int tableId,
int rowNumber,
int columnOffset) {
37 var rowId =
new RowId(tableId, rowNumber);
38 var key =
new CellKey(database,
new CellId(rowId, columnOffset));
void Set(CachedCell cell)
bool TryGetValue(CellKey key, out DataObject value)
static void Set(this ITableCellCache cache, string database, int tableId, int rowNumber, int columnOffset, DataObject value)
Represents a dynamic object that encapsulates a defined SqlType and a compatible constant ISqlObject ...
static bool TryGetValue(this ITableCellCache cache, string database, int tableId, int rowNumber, int columnOffset, out DataObject value)
Defines the value of a ROWID object, that is a unique reference within a database system to a single ...
static void Remove(this ITableCellCache cache, string database, int tableId, int rowNumber, int columnOffset)