Search Results
https://dev.mysql.com/doc/connector-net/en/preface.html
Access to Oracle Support for Accessibility Oracle customers that have purchased support have access to electronic support through My Oracle Support. MySQL Connector/NET 9.4 Community License Information User Manual has information about licenses ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-parameters.html
All of the connection parameters also have their own numeric constant values, which can be added up as a combined value for the option parameter for specifying those options. You must have MySQL 3.21.14 or newer for this to work. On Unix and macOS, ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-walkthrough.html
On system BETA (the Connector/ODBC client), follow these steps: Configure a Connector/ODBC DSN using parameters that match the server, database and authentication information that you have just configured on system ALPHA. Using an ODBC-capable ... A ...
https://dev.mysql.com/doc/connector-odbc/en/preface.html
Access to Oracle Support for Accessibility Oracle customers that have purchased support have access to electronic support through My Oracle Support. This manual describes how to install, configure, and develop database applications using MySQL ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
For example, to have warnings raised as errors, set sql_mode to TRADITIONAL. Using the client_flags argument, you have control of what is set. A connection with the MySQL server can be established using either the mysql.connector.connect() function ...
https://dev.mysql.com/doc/connector-python/en/connector-python-verification.html
Verifying Installations by pip To verify that a Connector/Python package has been installed successfully using pip, use the following command: $ pip install list If you have installed the classic interface, you should see an output similar to the ...Installed from an RPM The default Connector/Python installation location is /prefix/pythonX.Y/site-packages/, where prefix is the location where Python is installed and X.Y is the Python ...
https://dev.mysql.com/doc/connector-python/en/preface.html
Access to Oracle Support for Accessibility Oracle customers that have purchased support have access to electronic support through My Oracle Support. This manual describes how to install, configure, and develop database applications using MySQL ...
https://dev.mysql.com/doc/internals/en/autotools-plugin-macros.html
Declaring a plugin: MYSQL_PLUGIN(name, long-name, description [,configlist]) Each plugin is required to have MYSQL_PLUGIN() declared first. All plugins listed as a dependency must already have been declared with MYSQL_PLUGIN(). The following macros ...
https://dev.mysql.com/doc/internals/en/binary-log-overview.html
It also contains statements that potentially could have updated it (for example, a DELETE which matched no rows), unless row-based logging is used. More precisely, binary log events describe actions that can be used to reproduce the same changes of ... [Some information in this section is derived from Chapter 20, The Binary Log, in the MySQL Reference Manual.] The binary log is a set of log files that contain information about data modifications made to a MySQL server ...
https://dev.mysql.com/doc/internals/en/bitmaps.html
Second: the whole bitmap might have to be protected by a mutex for manipulations; this is settable by passing appropriate flag values. Third: the bitmap is allocated with a 'uint' size, which means that ordinarily it can't have more than 2^32 bytes.