Navigation
API > API/Plugins > API/Plugins/DatabaseSupport
References
| Module | DatabaseSupport |
| Header | /Engine/Plugins/Runtime/Database/DatabaseSupport/Source/DatabaseSupport/Public/Database.h |
| Include | #include "Database.h" |
Syntax
struct FDatabaseColumnInfo
Remarks
This struct holds info relating to a column. Specifically, we need to get back certain meta info from a RecordSet so we can "Get" data from it.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FString | ColumnName | The name of the column | |
| EDataBaseUnrealTypes | DataType | This is the type of data in this column. (e.g. so you can do GetFloat or GetInt on the column |
Constructors
| Type | Name | Description | |
|---|---|---|---|
| Default constructor |
Operators
| Type | Name | Description | |
|---|---|---|---|
| bool | operator==
(
const FDatabaseColumnInfo& OtherFDatabaseColumnInfo |