Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-tools-with-wordexcel.html
For example, to insert information from a table in the World test database into an Excel spreadsheet, using the DSN samples shown in Chapter 5, Configuring Connector/ODBC: Create a new Worksheet. The list of tables available to the user configured ... You can use Microsoft Word and Microsoft Excel to access information from a MySQL database using ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-select.html
The following example shows how to query data using a cursor created using the connection's cursor() method. We then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method. The task is to select all employees ...
https://dev.mysql.com/doc/internals/en/myisam-column-attributes.html
(This means that old tables will work as before for users.) ... When creating a key for the handler, HA_KEYTYPE_VARTEXT1 and HA_KEYTYPE_BINARY1 are used for a key on a column that has a 1-byte length prefix and HA_KEYTYPE_VARTEXT2 and ... Next I'll ...
https://dev.mysql.com/doc/internals/en/selectexplain.html
mysql_select creates a JOIN for select if it does not already exist (it might already exist because if it called for subquery JOIN can be created in JOIN::optimize of outer query when it decided to calculate the value of the subquery). For an ...
https://dev.mysql.com/doc/mysqld-version-reference/en/keywords.html
This section contains information on the keywords and reserved words within the server when creating and submitting queries to the system. For more information on reserved words and their impact on your queries, see Keywords and Reserved Words, in ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-annotations.html
The implementation of this interface is created dynamically by ClusterJ at runtime. When the newInstance() method is called, ClusterJ creates an implementation class for the Employee interface; this class stores the values in an internal object ...
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/relnotes/connector-net/en/news-8-0-8.html
(WL #10202) All connections created using MySQL Connector/NET now are encrypted by default. (WL #10561) Document Store: When creating a new connection, multiple hosts now can be specified as part of the connection string, which will try each host ...