|
static bool | TryGetValue (this ITableCellCache cache, string database, int tableId, int rowNumber, int columnOffset, out DataObject value) |
|
static void | Set (this ITableCellCache cache, string database, int tableId, int rowNumber, int columnOffset, DataObject value) |
|
static void | Remove (this ITableCellCache cache, string database, int tableId, int rowNumber, int columnOffset) |
|
Definition at line 23 of file TableCacheExtensions.cs.
static void Deveel.Data.Caching.TableCacheExtensions.Remove |
( |
this ITableCellCache |
cache, |
|
|
string |
database, |
|
|
int |
tableId, |
|
|
int |
rowNumber, |
|
|
int |
columnOffset |
|
) |
| |
|
inlinestatic |
Definition at line 36 of file TableCacheExtensions.cs.
37 var rowId =
new RowId(tableId, rowNumber);
38 var key =
new CellKey(database,
new CellId(rowId, columnOffset));
Defines the value of a ROWID object, that is a unique reference within a database system to a single ...
static void Deveel.Data.Caching.TableCacheExtensions.Set |
( |
this ITableCellCache |
cache, |
|
|
string |
database, |
|
|
int |
tableId, |
|
|
int |
rowNumber, |
|
|
int |
columnOffset, |
|
|
DataObject |
value |
|
) |
| |
|
inlinestatic |
Definition at line 30 of file TableCacheExtensions.cs.
31 var rowId =
new RowId(tableId, rowNumber);
32 var key =
new CellKey(database,
new CellId(rowId, columnOffset));
33 cache.Set(
new CachedCell(key, value));
Defines the value of a ROWID object, that is a unique reference within a database system to a single ...
static bool Deveel.Data.Caching.TableCacheExtensions.TryGetValue |
( |
this ITableCellCache |
cache, |
|
|
string |
database, |
|
|
int |
tableId, |
|
|
int |
rowNumber, |
|
|
int |
columnOffset, |
|
|
out DataObject |
value |
|
) |
| |
|
inlinestatic |
Definition at line 24 of file TableCacheExtensions.cs.
25 var rowId =
new RowId(tableId, rowNumber);
26 var key =
new CellKey(database,
new CellId(rowId, columnOffset));
27 return cache.TryGetValue(key, out value);
Defines the value of a ROWID object, that is a unique reference within a database system to a single ...
The documentation for this class was generated from the following file: