Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-constructor.html
If omitted, the cursor is created but its execute() method raises an exception.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorprepared.html
import mysql.connector cnx = mysql.connector.connect(database='employees') cursor = cnx.cursor(prepared=True) Alternatively, create an instance of the MySQLCursorPrepared class using the cursor_class argument to the cursor() method. import ...In ...
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/internals/en/binlog-event-flag.html
Hex Flag 0x0001 LOG_EVENT_BINLOG_IN_USE_F 0x0002 LOG_EVENT_FORCED_ROTATE_F 0x0004 LOG_EVENT_THREAD_SPECIFIC_F 0x0008 LOG_EVENT_SUPPRESS_USE_F 0x0010 LOG_EVENT_UPDATE_TABLE_MAP_VERSION_F 0x0020 LOG_EVENT_ARTIFICIAL_F 0x0040 LOG_EVENT_RELAY_LOG_F ...
https://dev.mysql.com/doc/internals/en/caching.html
(sql/hostname.cc) Privilege Cache To allow quick change between databases, the last used privileges are cached for each user/database combination. (Note that the some of the filenames contain an incorrect spelling of the word “cache.”) Key Cache ...
https://dev.mysql.com/doc/internals/en/capability-flags.html
CLIENT_CONNECT_WITH_DB Database (schema) name can be specified on connect in Handshake Response Packet. The capability flags are used by the client and server to indicate which features they support and want to use. Value 0x00000001 ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-client.html
There are other utilities too in fact, you'll find the source of most client-side programs here. There are also programs for checking the password, and for testing that basic functions such as threading or access via SSL are possible. You'll notice, ...
https://dev.mysql.com/doc/internals/en/myisam-introduction.html
These files will be in the directory: /<datadir>/<database>/ For example, if you use Linux, you might find the files in the /usr/local/var/test directory (assuming your database name is test). MySQL creates files named Table1.MYD ("MySQL Data"), ...
https://dev.mysql.com/doc/internals/en/replication.html
Replication works as follows: Whenever the master's database is modified, the change is written to a file, the so-called binary log, or binlog. This is done by the client thread that executed the query that modified the database. Status of this ...
https://dev.mysql.com/doc/internals/en/source-directory-listing.html
Directory — Short Comment bdb — The Berkeley Database table handler BitKeeper — BitKeeper administration (not part of the source distribution) BUILD — Frequently used build scripts client — Client library cmd-line-utils — Command-line ...