Search



Search Results
Displaying 281 to 290 of 380 total results
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
A connection with the MySQL server can be established using either the mysql.connector.connect() function or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...
https://dev.mysql.com/doc/connector-python/en/connector-python-installation-binary.html
Connector/Python includes the classic and X DevAPI connector APIs, which are installed separately. Binaries are distributed in the RPM and the wheel package formats.
https://dev.mysql.com/doc/connector-python/en/connector-python-introduction.html
MySQL Connector/Python enables Python programs to access MySQL databases, using an API that is compliant with the Python Database API Specification v2.0 (PEP 249). For notes detailing the changes in each release of Connector/Python, see MySQL ...
https://dev.mysql.com/doc/connector-python/en/connector-python-reference.html
Examples should be considered working for Python 2.7, and Python 3.1 and greater. They might also work for older versions (such as Python 2.4) unless they use features introduced in newer Python versions. For example, exception handling using the as ...
https://dev.mysql.com/doc/connector-python/en/installing-from-rpm.html
Installation by RPMs is only supported on RedHat Enterprise Linux and Oracle Linux, and is performed using the MySQL Yum Repository or by using RPM packages downloaded directly from Oracle.
https://dev.mysql.com/doc/connector-python/en/quick-installation-guide.html
The recommended way to install Connector/Python is by pip and wheel packages. If your system does not have pip, you can install it with your system's software manager, or with a standalone pip installer. Note You are strongly recommended to use the ...
https://dev.mysql.com/doc/internals/en/getting-source-tree.html
This section describes how to obtain the MySQL source tree, which is currently available on GitHub. For more information about MySQL's move to GitHub, refer to the announcement on the MySQL Release Engineering blog: MySQL on GitHub To obtain the ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-mysys.html
The next major directory is labelled mysys, which stands for MySQL System Library. This is the toolbox directory, for example it has low level routines for file access. The .c files in mysys have procedures and functions that are handy for calling ...
https://dev.mysql.com/doc/internals/en/guided-tour-oddsends.html
Finally, for the sake of completeness, we'll put up a list of the rest of the directories those that we haven't had occasion to mention till now. Source Code Administration Directories: SCCS Common .h Files: include GNU Readline library and ...
https://dev.mysql.com/doc/internals/en/guided-tour-skeleton.html
And now we're going to walk through something harder, namely the server. WARNING WARNING WARNING: code changes constantly, so names and parameters may have changed by the time you read this. Important files we'll be walking through: /sql/mysqld.cc ...
Displaying 281 to 290 of 380 total results