Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-tools-with-crystalreports.html
Drag and drop or use the > buttons to add fields to each area of the report. Crystal Reports can use an ODBC DSN to connect to a database from which you to extract data and information for reporting purposes. Note There is a known issue with ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-coldfusion.html
Before the MySQL driver appears in the ODBC data sources drop-down list, build and copy the Connector/ODBC driver to /opt/coldfusion/lib/libmyodbc.so. The following information is taken from the ColdFusion documentation: Use the following ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-query.html
ccnx.query('DROP TABLE IF EXISTS t') ccnx.query('CREATE TABLE t (i INT NOT NULL AUTO_INCREMENT PRIMARY KEY)') ccnx.query('INSERT INTO t (i) VALUES (NULL),(NULL),(NULL)') ccnx.query('SELECT LAST_INSERT_ID()') row = ccnx.fetch_row() ...raw_as_string ...
https://dev.mysql.com/doc/internals/en/defining-filename-extensions.html
Storage engines are required to provide the MySQL server with a list of extensions used by the storage engine with regard to a given table, its data and indexes. Extensions are expected in the form of a null-terminated string array.
https://dev.mysql.com/doc/internals/en/event-flags.html
This flag should be set for any event that does not need to have the default database set to function correctly, such as CREATE DATABASE and DROP DATABASE. Event headers for v3 format and up contain event flags in the two flag bytes at position ...
https://dev.mysql.com/doc/internals/en/guided-tour-skeleton.html
There will be — we're going into list mode now and just reciting the rest of the items in the switch statement — code for prepare, close statement, query, quit, create database, drop database, dump binary log, refresh, statistics, get process ...
https://dev.mysql.com/doc/internals/en/implementing-commit.html
During a commit operation, all changes made during a transaction are made permanent and a rollback operation is not possible after that. Depending on the transaction isolation used, this may be the first time such changes are visible to other ...
https://dev.mysql.com/doc/internals/en/logging-transactions-definitions.html
Note: N-writes include updates to N-tables, but also CREATE and DROP statements. To reason about logging different table types, we make some preliminary definitions. (D-T-table) A table that has a transactional engine is called a T-table.
https://dev.mysql.com/doc/internals/en/ndb-directory.html
We generally use the term "ndb" when referring to the storage engine, and the term "MySQL Cluster" when referring to the combination of the storage engine and the rest of the MySQL facilities.
https://dev.mysql.com/doc/internals/en/perfect-cleanup.html
At the end of the test, you need to drop just this database. Cleaning up becomes much more comfortable and less error prone if you create your "own" database and create all tables there. Do not forget to remove all users you created and all ...