Search



Search Results
Displaying 1311 to 1320 of 1907 total results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-next-result.html
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: ccnx.next_result() Initiates the next result set for a statement string that produced multiple result sets.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-query.html
It raises a TypeError exception if any argument has an invalid type, and a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. ccnx.query('DROP TABLE IF EXISTS t') ccnx.query('CREATE TABLE t (i INT NOT NULL AUTO_INCREMENT ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-rollback.html
Syntax: ccnx.rollback() Rolls back the current transaction. Raises a MySQLInterfaceError exception on errors. ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-select-db.html
Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server. Syntax: ccnx.select_db(db_name) Sets the default (current) database for the current session.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-shutdown.html
Raises a TypeError exception if the first argument is not an integer. Raises a MySQLErrorInterface exception if an error is retured by the MySQL server. The only argument currently permitted is an integer that describes the shutdown type.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-stat.html
Raises a MySQLErrorInterface exception if an error is retured by the MySQL server. Syntax: info = ccnx.stat() Returns the server status as a string.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-warning-count.html
Syntax: count = ccnx.warning_count() Returns the number of errors, warnings, and notes produced by the previous SQL statement.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-debug.html
Instructs the server to write debugging information to the error log.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-query.html
Syntax: cnx.cmd_query(statement) This method sends the given statement to the MySQL server and returns a result. The returned dictionary contains information depending on what kind of query was executed. If the query is a SELECT statement, the ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-constructor.html
It is not an error for multiple pools to have the same name. Syntax: MySQLConnectionPool(pool_name=None, pool_size=5, pool_reset_session=True, **kwargs) This constructor instantiates an object that manages a connection pool. If this argument is not ...
Displaying 1311 to 1320 of 1907 total results