Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-interfaceerror.html
This exception is raised for errors originating from Connector/Python itself, not related to the MySQL server.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-operationalerror.html
This exception is raised for errors which are related to MySQL's operations. For example: too many connections; a host name could not be resolved; bad handshake; server is shutting down, communication errors.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-poolerror.html
This exception is raised for connection pool errors. errors.PoolError is a subclass of errors.Error. ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-internalerror.html
This exception is raised when the MySQL server encounters an internal error, for example, when a deadlock occurred.
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-notsupportederror.html
This exception is raised when some feature was used that is not supported by the version of MySQL that returned the error. It is also raised when using functions or statements that are not supported by stored routines.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-internalerror.html
This exception is raised when the MySQL server encounters an internal error, for example, when a deadlock occurred.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-notsupportederror.html
This exception is raised when some feature was used that is not supported by the version of MySQL that returned the error. It is also raised when using functions or statements that are not supported by stored routines.
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-dataerror.html
This exception is raised when there were problems with the data. Examples are a column set to NULL that cannot be NULL, out-of-range values for a column, division by zero, column count does not match value count, and so on.
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-warning.html
Consider using either more strict Server SQL Modes or the raise_on_warnings connection argument to make Connector/Python raise errors when your queries produce warnings. This exception is used for reporting important warnings, however, ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-dataerror.html
This exception is raised when there were problems with the data. Examples are a column set to NULL that cannot be NULL, out-of-range values for a column, division by zero, column count does not match value count, and so on.