Navigation
API > API/Plugins > API/Plugins/SQLiteSupport > API/Plugins/SQLiteSupport/FSQLiteDatabaseConnection
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual bool Execute
(
const TCHAR* CommandString |
Execute a command on the database without storing the result set (if any) | SQLiteDatabaseConnection.h | |
bool Execute
(
const TCHAR* CommandString, |
Executes the command string on the currently opened database, returning a FSQLiteResultSet in RecordSet. | SQLiteDatabaseConnection.h | |
virtual bool Execute
(
const TCHAR* CommandString, |
Overriding to address warning C4264 - SQLite databases should call Execute(const TCHAR CommandString, FSQLiteResultSet& RecordSet) instead. | SQLiteDatabaseConnection.h |
Execute(const TCHAR *)
Description
Execute a command on the database without storing the result set (if any)
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Public/SQLiteDatabaseConnection.h |
| Include Path | #include "SQLiteDatabaseConnection.h" |
| Source | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Private/SQLiteDatabaseConnection.cpp |
virtual bool Execute
(
const TCHAR * CommandString
)
Execute(const TCHAR , FSQLiteResultSet &)
Description
Executes the command string on the currently opened database, returning a FSQLiteResultSet in RecordSet. Caller is responsible for freeing RecordSet
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Public/SQLiteDatabaseConnection.h |
| Include Path | #include "SQLiteDatabaseConnection.h" |
| Source | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Private/SQLiteDatabaseConnection.cpp |
bool Execute
(
const TCHAR * CommandString,
FSQLiteResultSet *& RecordSet
)
Execute(const TCHAR , FDataBaseRecordSet &)
Description
Overriding to address warning C4264 - SQLite databases should call Execute(const TCHAR CommandString, FSQLiteResultSet& RecordSet) instead.
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Public/SQLiteDatabaseConnection.h |
| Include Path | #include "SQLiteDatabaseConnection.h" |
| Source | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Private/SQLiteDatabaseConnection.cpp |
virtual bool Execute
(
const TCHAR * CommandString,
FDataBaseRecordSet *& RecordSet
)