Navigation
API > API/Plugins > API/Plugins/SQLiteCore
Result codes used while executing rows in an SQLite prepared statement.
| Name | ESQLitePreparedStatementExecuteRowResult |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/Database/SQLiteCore/Source/SQLiteCore/Public/SQLitePreparedStatement.h |
| Include Path | #include "SQLitePreparedStatement.h" |
Syntax
enum ESQLitePreparedStatementExecuteRowResult
{
Continue,
Stop,
Error,
}
Values
| Name | Remarks |
|---|---|
| Continue | Continue execution to the next row (if available). |
| Stop | Stop execution, but do not report an error. |
| Error | Stop execution, and report an error. |