Interface ICursor

Definition

Namespace:
Tizen.Applications.DataControl
Assembly:
Tizen.Applications.DataControl.dll
API Level:
3

This interface is for the DataControl cursor.

C#
Copy
public interface ICursor

Methods

View Source

GetBlobValue(Int32)

Gets a BLOB value.

Declaration
C#
Copy
byte[] GetBlobValue(int index)
Parameters
Type Name Description
Int32 index

The index of row.

Returns
Type Description
System.Byte[]
API Level: 3
View Source

GetColumnCount()

Gets a column count.

Declaration
C#
Copy
int GetColumnCount()
Returns
Type Description
Int32
API Level: 3
View Source

GetColumnName(Int32)

Gets a column name.

Declaration
C#
Copy
string GetColumnName(int index)
Parameters
Type Name Description
Int32 index

The index of column.

Returns
Type Description
System.String
API Level: 3
View Source

GetColumnType(Int32)

Gets a column type.

Declaration
C#
Copy
ColumnType GetColumnType(int index)
Parameters
Type Name Description
Int32 index

The index of column.

Returns
Type Description
ColumnType
API Level: 3
View Source

GetDoubleValue(Int32)

Gets a double value.

Declaration
C#
Copy
double GetDoubleValue(int index)
Parameters
Type Name Description
Int32 index

The index of row.

Returns
Type Description
System.Double
API Level: 3
View Source

GetInt64Value(Int32)

Gets an int64 value.

Declaration
C#
Copy
long GetInt64Value(int index)
Parameters
Type Name Description
Int32 index

The index of row.

Returns
Type Description
System.Int64
API Level: 3
View Source

GetIntValue(Int32)

Gets an integer value.

Declaration
C#
Copy
int GetIntValue(int index)
Parameters
Type Name Description
Int32 index

The index of row.

Returns
Type Description
Int32
API Level: 3
View Source

GetRowCount()

Gets the numbers of rows in the cursor.

Declaration
C#
Copy
long GetRowCount()
Returns
Type Description
System.Int64
API Level: 3
View Source

GetStringValue(Int32)

Gets a string value.

Declaration
C#
Copy
string GetStringValue(int index)
Parameters
Type Name Description
Int32 index

The index of row.

Returns
Type Description
System.String
API Level: 3
View Source

Next()

Gets a next row.

Declaration
C#
Copy
bool Next()
Returns
Type Description
Boolean
API Level: 3
View Source

Prev()

Gets a prev row.

Declaration
C#
Copy
bool Prev()
Returns
Type Description
Boolean
API Level: 3
View Source

Reset()

Gets a first row.

Declaration
C#
Copy
bool Reset()
Returns
Type Description
Boolean
API Level: 3