Navigation
API > API/Plugins > API/Plugins/DatabaseSupport
Inheritance Hierarchy
- FDataBaseRecordSet
- FRemoteDataBaseRecordSet
- FSQLiteResultSet
References
| Module | DatabaseSupport |
| Header | /Engine/Plugins/Runtime/Database/DatabaseSupport/Source/DatabaseSupport/Public/Database.h |
| Include | #include "Database.h" |
Syntax
class FDataBaseRecordSet
Remarks
Empty base class for iterating over database records returned via query. Used on platforms not supporting a direct database connection.
Destructors
| Type | Name | Description | |
|---|---|---|---|
| Virtual destructor as class has virtual functions. |
Functions
| 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 () |
Moves to the first record in the set. | |
| void | MoveToNext () |
Moves to the next record in the set. |
Classes
| Type | Name | Description | |
|---|---|---|---|
| TIterator | Iterator helper class based on FObjectIterator. |