Navigation
API > API/Plugins > API/Plugins/SQLiteCore > API/Plugins/SQLiteCore/sqlite
Type
typedef struct sqlite3_str sqlite3_str
References
| Module | SQLiteCore |
| Header | /Engine/Plugins/Runtime/Database/SQLiteCore/Source/SQLiteCore/Public/sqlite/sqlite3.h |
| Include | #include "sqlite/sqlite3.h" |
Remarks
CAPI3REF: Dynamic String Object KEYWORDS: {dynamic string}
An instance of the sqlite3_str object contains a dynamically-sized string under construction.
The lifecycle of an sqlite3_str object is as follows:
^The sqlite3_str object is created using [sqlite3_str_new()].
^Text is appended to the sqlite3_str object using various methods, such as [sqlite3_str_appendf()].
^The sqlite3_str object is destroyed and the string it created is returned using the [sqlite3_str_finish()] interface.