Navigation
API > API/Plugins > API/Plugins/SQLiteSupport
Inheritance Hierarchy
- FDataBaseConnection
- FSQLiteDatabaseConnection
References
| Module | SQLiteSupport |
| Header | /Engine/Plugins/Runtime/Database/SQLiteSupport/Source/SQLiteSupport/Public/SQLiteDatabaseConnection.h |
| Include | #include "SQLiteDatabaseConnection.h" |
Syntax
class FSQLiteDatabaseConnection : public FDataBaseConnection
Remarks
SQLite database file
Variables
| Type | Name | Description | |
|---|---|---|---|
| FSQLiteDatabase | Database |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | Execute
(
const TCHAR* CommandString, |
Executes the command string on the currently opened database, returning a FSQLiteResultSet in RecordSet. | |
| FString | GetLastError () |
Overridden from FDataBaseConnection
| Type | Name | Description | |
|---|---|---|---|
| void | Close () |
Closes the database handle and unlocks the file | |
| bool | Execute a command on the database without storing the result set (if any) | ||
| bool | Execute
(
const TCHAR* CommandString, |
Overriding to address warning C4264 - SQLite databases should call Execute(const TCHAR CommandString, FSQLiteResultSet& RecordSet) instead. | |
| bool | Open a SQLite file |