Navigation
API > API/Plugins > API/Plugins/DatabaseSupport
Empty base class for database access via executing SQL commands. Used on platforms not supporting a direct database connection.
| Name | FDataBaseConnection |
| Type | class |
| Header File | /Engine/Plugins/Runtime/Database/DatabaseSupport/Source/DatabaseSupport/Public/Database.h |
| Include Path | #include "Database.h" |
Syntax
class FDataBaseConnection
Derived Classes
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~FDataBaseConnection() |
Virtual destructor as we have virtual functions. | Database.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void Close() |
Closes connection to database. | Database.h | |
virtual bool Execute
(
const TCHAR* CommandString |
Executes the passed in command on the database. | Database.h | |
virtual bool Execute
(
const TCHAR* CommandString, |
Executes the passed in command on the database. | Database.h | |
virtual bool Open
(
const TCHAR* ConnectionString, |
Opens a connection to the database. | Database.h |