Navigation
API > API/Plugins > API/Plugins/RemoteDatabaseSupport > API/Plugins/RemoteDatabaseSupport/FRemoteDatabaseConnection
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual bool Execute
(
const TCHAR* CommandString |
Executes the passed in command on the database. | RemoteDatabaseConnection.h | |
virtual bool Execute
(
const TCHAR* CommandString, |
Executes the passed in command on the database. | RemoteDatabaseConnection.h |
Execute(const TCHAR *)
Description
Executes the passed in command on the database.
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Database/RemoteDatabaseSupport/Source/RemoteDatabaseSupport/Public/RemoteDatabaseConnection.h |
| Include Path | #include "RemoteDatabaseConnection.h" |
| Source | /Engine/Plugins/Runtime/Database/RemoteDatabaseSupport/Source/RemoteDatabaseSupport/Private/RemoteDatabaseConnection.cpp |
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/RemoteDatabaseSupport/Source/RemoteDatabaseSupport/Public/RemoteDatabaseConnection.h |
| Include Path | #include "RemoteDatabaseConnection.h" |
| Source | /Engine/Plugins/Runtime/Database/RemoteDatabaseSupport/Source/RemoteDatabaseSupport/Private/RemoteDatabaseConnection.cpp |
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 |