Navigation
API > API/Plugins > API/Plugins/DatabaseSupport > API/Plugins/DatabaseSupport/FDataBaseRecordSet
References
| Module | DatabaseSupport |
| Header | /Engine/Plugins/Runtime/Database/DatabaseSupport/Source/DatabaseSupport/Public/Database.h |
| Include | #include "Database.h" |
Syntax
class TIterator
Remarks
Iterator helper class based on FObjectIterator.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FDataBaseRecordSet * | RecordSet | Database record set being iterated over. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
TIterator
(
FDataBaseRecordSet* InRecordSet |
Initialization constructor. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| Conversion to "bool" returning true if the iterator is valid. | |||
| bool | operator! () |
Inverse of the "bool" operator | |
| FDataBaseRecordSet * | operator* () |
Access operators. | |
| void | operator++ () |
Operator++ used to iterate to next element. | |
| FDataBaseRecordSet * | operator-> () |