Navigation
API > API/Plugins > API/Plugins/SQLiteSupport
Inheritance Hierarchy
- FDataBaseRecordSet
- FSQLiteResultSet
References
| Module | SQLiteSupport |
| Header | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Public/SQLiteResultSet.h |
| Include | #include "SQLiteResultSet.h" |
Syntax
class FSQLiteResultSet : public FDataBaseRecordSet
Remarks
Result set for SQLite database queries
Constructors
| Type | Name | Description | |
|---|---|---|---|
FSQLiteResultSet
(
FSQLitePreparedStatement&& InPreparedStatement |
Overridden from FDataBaseRecordSet
| Type | Name | Description | |
|---|---|---|---|
| int64 | Returns a int64 associated with the passed in field/ column for the current row. | ||
| TArray< FDatabaseColumnInfo > | Returns the set of column names for this Recordset. | ||
| float | Returns a float associated with the passed in field/ column for the current row. | ||
| int32 | Returns an integer associated with the passed in field/ column for the current row. | ||
| int32 | Returns a count of the number of records in the record set | ||
| FString | Returns a string associated with the passed in field/ column for the current row. | ||
| bool | IsAtEnd () |
Returns whether we are at the end. | |
| void | MoveToFirst () |
FDatabaseRecordSet implementation. | |
| void | MoveToNext () |
Moves to the next record in the set. |