Class InsertResult

Definition

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

This class contains the insert operation result.

C#
Copy
public class InsertResult
Inheritance
System.Object
InsertResult

Constructors

View Source

InsertResult(Int64, Boolean)

Initializes the InsertResult class with columnNames and columnTypes.

Declaration
C#
Copy
public InsertResult(long rowID, bool result)
Parameters
Type Name Description
System.Int64 rowID

The inserted row ID.

Boolean result

The insert request result.

API Level: 3

Properties

View Source

Result

Gets the insert operation result.

Declaration
C#
Copy
public bool Result { get; }
Property Value
Type Description
Boolean
API Level: 3
View Source

RowID

Gets the insert data's row ID.

Declaration
C#
Copy
public long RowID { get; }
Property Value
Type Description
System.Int64
API Level: 3