5.4. Errors¶
- exception simplesqlite.DatabaseError[source]¶
Bases:
DatabaseErrorException raised for errors that are related to the database.
See also
- exception simplesqlite.NullDatabaseConnectionError[source]¶
Bases:
DatabaseErrorException raised when executing an operation of
SimpleSQLiteinstance without connection to a SQLite database file.
- exception simplesqlite.TableNotFoundError[source]¶
Bases:
DatabaseErrorException raised when accessed the table that not exists in the database.
- exception simplesqlite.AttributeNotFoundError[source]¶
Bases:
DatabaseErrorException raised when accessed the attribute that not exists in the table.
- exception simplesqlite.SqlSyntaxError[source]¶
Bases:
ExceptionException raised when a SQLite query syntax is invalid.
- exception simplesqlite.OperationalError(*args: Any, **kwargs: Any)[source]¶
Bases:
OperationalErrorException raised when failed to execute a query.