Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-examples.html
These coding examples illustrate how to develop Python applications and scripts which connect to MySQL Server using MySQL Connector/Python.
https://dev.mysql.com/doc/connector-python/en/connector-python-coding.html
The following guidelines cover aspects of developing MySQL applications that might not be immediately obvious to developers coming from a Python background: For security, do not hardcode the values needed to connect and log into the database in ...
https://dev.mysql.com/doc/connector-python/en/connector-python-examples.html
These coding examples illustrate how to develop Python applications and scripts which connect to MySQL Server using MySQL Connector/Python.
https://dev.mysql.com/doc/internals/en/complicated-test-architecture.html
Comment your code when you do or check something that someone else may think is not trivial. If your test is very complicated, write a sufficient explanation of the test architecture. This helps avoid having someone else come along and ...
https://dev.mysql.com/doc/internals/en/files-in-mysql-sources.html
This is a description of the files that you get when you download the source code of MySQL. This description begins with a list of the main directories and a short comment about each one. Then, for each directory, in alphabetical order, a longer ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-autocompletion.html
For example, when you are issuing: print(db.user.select().where("user in ('foo', 'bar')").e Pressing the Tab key would cause autocompletion to try to complete the text db.user.select().where().e but this invalid code yields undefined behavior.
https://dev.mysql.com/doc/mysql-shell/9.4/en/code-limitations.html
This section describes the limitations of the various supported MySQL Shell modes. SQL Limitations for X Protocol Sessions The following statements are not possible with an X Protocol session: ALTER INSTANCE INSTALL COMPONENT INSTALL PLUGIN LOAD ...
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-error-summary-tables.html
row *************************** ERROR_NUMBER: 1064 ERROR_NAME: ER_PARSE_ERROR SQL_STATE: 42000 SUM_ERROR_RAISED: 1 SUM_ERROR_HANDLED: 0 FIRST_SEEN: 2016-06-28 07:34:02 LAST_SEEN: 2016-06-28 07:34:02 *************************** 2. The Performance ...
https://dev.mysql.com/doc/mysql-errors/8.4/en/global-error-reference.html
These errors have error codes in the range from 1 to 999. Each global error message includes an error code, SQLSTATE value, and message string, as described in Error Message Sources and Elements. If the server writes a message to the error log that ... This document lists “global” error messages that are shared in the sense that they can be produced by the MySQL server or by MySQL client ...
https://dev.mysql.com/doc/mysql-errors/8.4/en/client-error-reference.html
Here is an example client error message, as displayed by the mysql client: $> mysql -h no-such-host ERROR 2005 (HY000): Unknown MySQL server host 'no-such-host' (0) Each client error message includes an error code, SQLSTATE value, and message ...A ...