SQLiteResultSet Constructor | Initialises a new instance of an SQLiteResultSet object |
ColumnNames | Returns an ArrayList of the column names associated with this result set. |
IsMoreData | Use in conjunction with GetRow() or GetRowHash() to determine if there is more data left to be retrieved. |
Rows | Returns the row data as an ArrayList. |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
GetColumn | Overloaded. Returns an ArrayList of a column of data in the result set. |
GetField | Gets a particular field of a particular row from the result set. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetRow | Overloaded. Returns the next row from the result set based on the internal row pointer. |
GetRowHash | Overloaded. Returns a Hashtable of the next row |
GetType (inherited from Object) | Gets the Type of the current instance. |
Reset | Resets the internal row pointer to zero (start of result set). |
Seek | Moves the internal row pointer to the given index. Returns true/false as to whether it succeeded. (Fails if there aren't enough rows). |
ToString (inherited from Object) | Returns a String that represents the current Object. |
Finalize (inherited from Object) | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. |
MemberwiseClone (inherited from Object) | Creates a shallow copy of the current Object. |
SQLiteResultSet Class | SQLite.NET Namespace