Navigation
API > API/Plugins > API/Plugins/DatabaseSupport > API/Plugins/DatabaseSupport/FDataBaseConnection
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
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 |
Execute(const TCHAR *)
Description
Executes the passed in command on the database.
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Database/DatabaseSupport/Source/DatabaseSupport/Public/Database.h |
| Include Path | #include "Database.h" |
virtual bool Execute
(
const TCHAR * CommandString
)
true if execution was successful, false otherwise
Parameters
| Name | Remarks |
|---|---|
| CommandString | Command to execute |
Execute(const TCHAR , FDataBaseRecordSet &)
Description
Executes the passed in command on the database. The caller is responsible for deleting the created RecordSet.
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Database/DatabaseSupport/Source/DatabaseSupport/Public/Database.h |
| Include Path | #include "Database.h" |
virtual bool Execute
(
const TCHAR * CommandString,
FDataBaseRecordSet *& RecordSet
)
true if execution was successful, false otherwise
Parameters
| Name | Remarks |
|---|---|
| CommandString | Command to execute |
| RecordSet | Reference to recordset pointer that is going to hold result |