Navigation
API > API/Plugins > API/Plugins/SQLiteCore
Result codes returned from stepping an SQLite prepared statement.
| Name | ESQLitePreparedStatementStepResult |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/Database/SQLiteCore/Source/SQLiteCore/Public/SQLitePreparedStatement.h |
| Include Path | #include "SQLitePreparedStatement.h" |
Syntax
enum ESQLitePreparedStatementStepResult
{
Error,
Busy,
Row,
Done,
}
Values
| Name | Remarks |
|---|---|
| Error | The step was unsuccessful and enumeration should be aborted. |
| Busy | The step was unsuccessful as the required locks could not be acquired. |
| Row | The step was successful and we're on a database row. |
| Done | The step was successful, but we've reached the end of the rows and enumeration should be aborted. |