Interface ICursor
Definition
- Namespace:
- Tizen.Applications.DataControl
- Assembly:
- Tizen.Applications.DataControl.dll
This interface is for the DataControl cursor.
public interface ICursor
Methods
View SourceGetBlobValue(int)
Gets a BLOB value.
Declaration
byte[] GetBlobValue(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of row. |
Returns
Type | Description |
---|---|
byte[] |
GetColumnCount()
Gets a column count.
Declaration
int GetColumnCount()
Returns
Type | Description |
---|---|
int |
GetColumnName(int)
Gets a column name.
Declaration
string GetColumnName(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of column. |
Returns
Type | Description |
---|---|
string |
GetColumnType(int)
Gets a column type.
Declaration
ColumnType GetColumnType(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of column. |
Returns
Type | Description |
---|---|
ColumnType |
GetDoubleValue(int)
Gets a double value.
Declaration
double GetDoubleValue(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of row. |
Returns
Type | Description |
---|---|
double |
GetInt64Value(int)
Gets an int64 value.
Declaration
long GetInt64Value(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of row. |
Returns
Type | Description |
---|---|
long |
GetIntValue(int)
Gets an integer value.
Declaration
int GetIntValue(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of row. |
Returns
Type | Description |
---|---|
int |
GetRowCount()
Gets the numbers of rows in the cursor.
Declaration
long GetRowCount()
Returns
Type | Description |
---|---|
long |
GetStringValue(int)
Gets a string value.
Declaration
string GetStringValue(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | The index of row. |
Returns
Type | Description |
---|---|
string |
Next()
Gets a next row.
Declaration
bool Next()
Returns
Type | Description |
---|---|
bool |
Prev()
Gets a prev row.
Declaration
bool Prev()
Returns
Type | Description |
---|---|
bool |
Reset()
Gets a first row.
Declaration
bool Reset()
Returns
Type | Description |
---|---|
bool |