SQLite Error 101 – SQLITE_DONE

In this post, you’ll learn about the SQLite Error Message 101 SQLITE_DONE and the reason why you are receiving the error message when you are working with the SQLite database

How does this SQLite Error Message Look like?

101 – SQLITE_DONE

Why do you receive this Error in SQLite?

The SQLITE_DONE result code indicates that an operation has completed. The SQLITE_DONE result code is most commonly seen as a return value from sqlite3_step() indicating that the SQL statement has run to completion. But SQLITE_DONE can also be returned by other multi-step interfaces such as sqlite3_backup_step().