Defines a row stored in the search engine index.
More...
|
int | RowIndex [get] |
| Gets the index of the row in the database system coresponding to the row indexed by the search engine. More...
|
|
Defines a row stored in the search engine index.
Definition at line 25 of file SearchTextRow.cs.
Deveel.Data.Text.SearchTextRow.SearchTextRow |
( |
int |
rowIndex | ) |
|
|
inline |
Deveel.Data.Text.SearchTextRow.SearchTextRow |
( |
SerializationInfo |
info, |
|
|
StreamingContext |
context |
|
) |
| |
|
inlineprivate |
void Deveel.Data.Text.SearchTextRow.GetObjectData |
( |
SerializationInfo |
info, |
|
|
StreamingContext |
context |
|
) |
| |
|
inline |
string Deveel.Data.Text.SearchTextRow.GetValue |
( |
string |
columnName | ) |
|
|
inline |
Definition at line 65 of file SearchTextRow.cs.
66 if (columnName == null)
67 throw new ArgumentNullException(
"columnName");
68 if (columnName.Length == 0)
69 throw new ArgumentException();
74 return columns[columnName] as string;
void Deveel.Data.Text.SearchTextRow.SetValue |
( |
string |
columnName, |
|
|
string |
value |
|
) |
| |
|
inline |
Definition at line 53 of file SearchTextRow.cs.
54 if (columnName == null)
55 throw new ArgumentNullException(
"columnName");
56 if (columnName.Length == 0)
57 throw new ArgumentException();
Hashtable Deveel.Data.Text.SearchTextRow.columns |
|
private |
int Deveel.Data.Text.SearchTextRow.rowIndex |
|
private |
int Deveel.Data.Text.SearchTextRow.RowIndex |
|
get |
Gets the index of the row in the database system coresponding to the row indexed by the search engine.
Definition at line 47 of file SearchTextRow.cs.
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Text/SearchTextRow.cs