Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-tools-with-crystalreports.html
Before using Crystal Reports with MySQL, please ensure that you have update to the latest version, including any outstanding service packs and hotfixes. Once you have selected the tables you want to include, click Next to continue. If Crystal ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-source-unix.html
These should be in place if you have installed the MySQL server on the same machine. To run the tests: Make sure you have an odbc.ini file in place, by which you can configure your DSN entries. You need the following tools to build MySQL from ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connection-pooling.html
websites that can have more “permanent” connections open to the MySQL server. Simple connection pooling is supported that has these characteristics: The mysql.connector.pooling module implements pooling. A pool opens a number of connections and ...
https://dev.mysql.com/doc/internals/en/debug-sync-activation-deactivation.html
The session value can be read by any user and will have the same value as the global variable. The session value can be set by users that have the SUPER privilege to control synchronization points. You cannot read back the string that you assigned ... The Debug Sync facility is an optional part of the MySQL ...
https://dev.mysql.com/doc/internals/en/error-message-multiple-versions.html
This will have the side effect that any error codes which are not in GA will change their values in post-GA versions. Instead, use the ER_UNKNOWN_ERROR error code, and print a helpful error text with code similar to this: ... It is critical that ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-build.html
When it's done, you'll have an executable MySQL server and client. Sometimes people have trouble with this step because there's something missing in their operating system version, or whatever. Don't worry, it really does work, and there are people ...It actually has very little in it, but it's useful, because one of the first things you might want to do with the source code is: compile and link ...
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 ...But ...
https://dev.mysql.com/doc/internals/en/innodb-page-directory.html
Unlike other DBMSs, InnoDB does not have a slot for every record in the page. (Since the Page Directory does not have a slot for every record, binary search can only give a rough position and then InnoDB must follow the "next" record pointers. The ...
https://dev.mysql.com/doc/internals/en/load-data-infile-events.html
Historically, there seem to have been at least four event sequences for representing LOAD DATA INFILE operations. LOAD DATA INFILE is not written to the binary log like other statements. It is written as one or more events in a packed format, not ...
https://dev.mysql.com/doc/internals/en/optimizer-joins-access-methods.html
Bad join choices can cause more damage than bad choices in single-table searches, so MySQL developers have spent proportionally more time making sure that the tables in a query are joined in an optimal order and that optimal access methods (often ...A combination of a fixed order in which tables are joined and the corresponding table access methods for each table is called query execution plan ...