Interface ICursor
Definition
- Namespace:
- Tizen.Applications.DataControl
- Assembly:
- Tizen.Applications.DataControl.dll
- API Level:
- 3
This interface is for the DataControl cursor.
public interface ICursor
Methods
View SourceGetBlobValue(Int32)
Gets a BLOB value.
Declaration
byte[] GetBlobValue(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of row. |
Returns
Type | Description |
---|---|
Byte[] |
API Level: 3
View SourceGetColumnCount()
Gets a column count.
Declaration
int GetColumnCount()
Returns
Type | Description |
---|---|
Int32 |
API Level: 3
View SourceGetColumnName(Int32)
Gets a column name.
Declaration
string GetColumnName(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of column. |
Returns
Type | Description |
---|---|
String |
API Level: 3
View SourceGetColumnType(Int32)
Gets a column type.
Declaration
ColumnType GetColumnType(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of column. |
Returns
Type | Description |
---|---|
ColumnType |
API Level: 3
View SourceGetDoubleValue(Int32)
Gets a double value.
Declaration
double GetDoubleValue(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of row. |
Returns
Type | Description |
---|---|
Double |
API Level: 3
View SourceGetInt64Value(Int32)
Gets an int64 value.
Declaration
long GetInt64Value(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of row. |
Returns
Type | Description |
---|---|
Int64 |
API Level: 3
View SourceGetIntValue(Int32)
Gets an integer value.
Declaration
int GetIntValue(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of row. |
Returns
Type | Description |
---|---|
Int32 |
API Level: 3
View SourceGetRowCount()
Gets the numbers of rows in the cursor.
Declaration
long GetRowCount()
Returns
Type | Description |
---|---|
Int64 |
API Level: 3
View SourceGetStringValue(Int32)
Gets a string value.
Declaration
string GetStringValue(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of row. |
Returns
Type | Description |
---|---|
String |
API Level: 3
View SourceNext()
Gets a next row.
Declaration
bool Next()
Returns
Type | Description |
---|---|
Boolean |
API Level: 3
View SourcePrev()
Gets a prev row.
Declaration
bool Prev()
Returns
Type | Description |
---|---|
Boolean |
API Level: 3
View SourceReset()
Gets a first row.
Declaration
bool Reset()
Returns
Type | Description |
---|---|
Boolean |