FDataBaseRecordSet

Empty base class for iterating over database records returned via query.

Windows
MacOS
Linux

Inheritance Hierarchy

FDataBaseRecordSet

FRemoteDataBaseRecordSet

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

Name Description

Public function Virtual

~FDataBaseRecordSet()

Virtual destructor as class has virtual functions.

Functions

Name Description

Public function Virtual Const

int64

 

GetBigInt

(
    const TCHAR* Column
)

Returns a int64 associated with the passed in field/ column for the current row.

Public function Virtual Const

TArray< FDat...

 

GetColumnNames()

Returns the set of column names for this Recordset.

Public function Virtual Const

float

 

GetFloat

(
    const TCHAR* Column
)

Returns a float associated with the passed in field/ column for the current row.

Public function Virtual Const

int32

 

GetInt

(
    const TCHAR* Column
)

Returns an integer associated with the passed in field/ column for the current row.

Public function Virtual Const

int32

 

GetRecordCount()

Returns a count of the number of records in the record set

Public function Virtual Const

FString

 

GetString

(
    const TCHAR* Column
)

Returns a string associated with the passed in field/ column for the current row.

Protected function Virtual Const

bool

 

IsAtEnd()

Returns whether we are at the end.

Protected function Virtual

void

 

MoveToFirst()

Moves to the first record in the set.

Protected function Virtual

void

 

MoveToNext()

Moves to the next record in the set.

Classes

Name

Description

Public class

TIterator

Iterator helper class based on FObjectIterator.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss