Search Results
https://dev.mysql.com/doc/connectors/en/connector-odbc-installation-source-unix-macos.html
To build Connector/ODBC from source on macOS, follow the same instructions given for Section 5.4.5, “Building Connector/ODBC from a Source Distribution on Unix”. Notice that iODBC is the default ODBC library used when building Connector/ODBC on ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-source-unix-macos.html
To build Connector/ODBC from source on macOS, follow the same instructions given for Section 4.5, “Building Connector/ODBC from a Source Distribution on Unix”. Notice that iODBC is the default ODBC library used when building Connector/ODBC on ...
https://dev.mysql.com/doc/internals/en/optimizer-trace-system-variable.html
The optimizer_trace system variable has these on/off switches: enabled: allows to enable/disable tracing one_line: if on, the trace will have no whitespace; it's unreadable for humans but readable for JSON parsers (they ignore whitespace); the only ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-delete.html
FILE: delete.js var nosql = require('..'); var lib = require('./lib.js'); var adapter = 'ndb'; global.mysql_conn_properties = {}; var user_args = []; // *** program starts here *** // analyze command line var usageMessage = "Usage: node delete ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-find.html
# FILE: find.js var nosql = require('..'); var lib = require('./lib.js'); var adapter = 'ndb'; global.mysql_conn_properties = {}; var user_args = []; // *** program starts here *** // analyze command line var usageMessage = "Usage: node find key\n" ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-insert.html
# FILE: insert.js var nosql = require('..'); var lib = require('./lib.js'); var adapter = 'ndb'; global.mysql_conn_properties = {}; var user_args = []; // *** program starts here *** // analyze command line var usageMessage = "Usage: node insert ...
https://dev.mysql.com/doc/workbench/en/wb-table-editor-foreign-keys-tab.html
The Foreign Keys subtab is organized in much the same fashion as the Indexes subtab and adding or editing a foreign key is similar to adding or editing an index. The following figure shows an example of the Foreign Keys tab. Figure 8.16 The Foreign ...
https://dev.mysql.com/doc/internals/en/binary-log-structure-and-contents.html
The binary log is a set of files that contain information about data modifications made to a MySQL server instance. The log consists of a set of binary log files, plus an index file. Each log file contains a 4-byte magic number, followed by a set ...
https://dev.mysql.com/doc/internals/en/insufficient-client-capabilities.html
Server will reject connection with ERR_Packet if it discovers that client capabilities are not sufficient to complete authenticaiton. This can happen in the following situations: A client which does not support pluggable authentication ...
https://dev.mysql.com/doc/internals/en/transactions-historical-note.html
"Statement transaction" is a non-standard term that comes from the days when MySQL supported the BerkeleyDB storage engine. First, observe that in BerkeleyDB the "auto-commit" mode causes automatic commit of operations that are atomic from the ...