_mysql_exceptions Module¶
_mysql_exceptions: Exception classes for _mysql and MySQLdb.
These classes are dictated by the DB API v2.0:
-
exception
_mysql_exceptions.
DataError
¶ Bases:
_mysql_exceptions.DatabaseError
Exception raised for errors that are due to problems with the processed data like division by zero, numeric value out of range, etc.
-
exception
_mysql_exceptions.
DatabaseError
¶ Bases:
_mysql_exceptions.Error
Exception raised for errors that are related to the database.
-
exception
_mysql_exceptions.
Error
¶ Bases:
_mysql_exceptions.MySQLError
Exception that is the base class of all other error exceptions (not Warning).
-
exception
_mysql_exceptions.
IntegrityError
¶ Bases:
_mysql_exceptions.DatabaseError
Exception raised when the relational integrity of the database is affected, e.g. a foreign key check fails, duplicate key, etc.
-
exception
_mysql_exceptions.
InterfaceError
¶ Bases:
_mysql_exceptions.Error
Exception raised for errors that are related to the database interface rather than the database itself.
-
exception
_mysql_exceptions.
InternalError
¶ Bases:
_mysql_exceptions.DatabaseError
Exception raised when the database encounters an internal error, e.g. the cursor is not valid anymore, the transaction is out of sync, etc.
-
exception
_mysql_exceptions.
MySQLError
¶ Bases:
exceptions.StandardError
Exception related to operation with MySQL.
-
exception
_mysql_exceptions.
NotSupportedError
¶ Bases:
_mysql_exceptions.DatabaseError
Exception raised in case a method or database API was used which is not supported by the database, e.g. requesting a .rollback() on a connection that does not support transaction or has transactions turned off.
-
exception
_mysql_exceptions.
OperationalError
¶ Bases:
_mysql_exceptions.DatabaseError
Exception raised for errors that are related to the database’s operation and not necessarily under the control of the programmer, e.g. an unexpected disconnect occurs, the data source name is not found, a transaction could not be processed, a memory allocation error occurred during processing, etc.
-
exception
_mysql_exceptions.
ProgrammingError
¶ Bases:
_mysql_exceptions.DatabaseError
Exception raised for programming errors, e.g. table not found or already exists, syntax error in the SQL statement, wrong number of parameters specified, etc.
-
exception
_mysql_exceptions.
Warning
¶ Bases:
exceptions.Warning
,_mysql_exceptions.MySQLError
Exception raised for important warnings like data truncations while inserting, etc.