Search Results
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-backup.html
This section provides information about the functions provided in the MGM API for starting and stopping NDB Cluster backups. ndb_mgm_start_backup() ndb_mgm_start_backup2() ndb_mgm_start_backup3() ndb_mgm_start_backup4() ndb_mgm_abort_backup() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-event-handling.html
The source code for this program may be found in the NDB Cluster source tree, in the file storage/ndb/ndbapi-examples/ndbapi_event/ndbapi_event.cpp. #include <NdbApi.hpp> // Used for cout #include <stdio.h> #include <iostream> #include <unistd.h> ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes-ndbrecord.html
*/ NdbDictionary::RecordSpecification spec[2]; spec[0].column= col1; spec[0].offset= offsetof(MyTableRow, attr1); // So that it goes nicely into the struct spec[0].nullbit_byte_offset= 0; spec[0].nullbit_bit_in_byte= 0; const NdbRecord *pk_record= ... This program illustrates how to use secondary indexes in the NDB API with the aid of the NdbRecord ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-synchronous-transactions.html
It first creates a database ndb_examples and a table api_simple (if these objects do not already exist) using the MySQL C API with an SQL node, then performs a series of basic data operations (insert, update, read, and select) on this table using ...
https://dev.mysql.com/doc/ndbapi/en/ndb-index.html
If you create or change indexes using the NDB API, these modifications cannot be seen by MySQL. Index Class Constructor Description This is used to create an new instance of Index. Indexes created using the NDB API cannot be seen by the MySQL Server. It is possible to create an index without a name, and then assign a name to it later using ...Index Class Overview Index Class Constructor Index::addColumn() Index::addColumnName() Index::addColumnNames() Index::getColumn() Index::getLogging() Index::getName() Index::getNoOfColumns() Index::getObjectStatus() Index::getObjectVersion() Index::getObjectId() Index::getTable() Index::getType() Index::setLogging Index::setName() Index::setTable() Index::setType() Index::Type Index Class Overview Parent class ...
https://dev.mysql.com/doc/ndbapi/en/ndb-start-initialization.html
Keep in mind that, before you invoke this function, all Ndb_cluster_connection objects created in your NDB API application must be cleaned up or destroyed; otherwise, threads created when an Ndb_cluster_connection object's connect() method is ...
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-array-adapter.html
This program inserts CHAR, VARCHAR, and BINARY column data into a table by constructing aRef objects using array adapters of the type defined in common/array_adapter.hpp (see Section 2.5.15, “Common Files for NDB API Array Examples”). It then ...
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-array-simple.html
This program inserts CHAR, VARCHAR, and BINARY column data into a table by constructing aRef objects using local functions. It then reads the columns back and extracts the data from them using local functions. See Section 2.5.15, “Common Files ...
https://dev.mysql.com/doc/relnotes/connector-net/en/news-8-0-24.html
(Bug #31872906) Functionality Added or Changed Improved server disconnection handling of an X Protocol connection now creates a log entry and returns an error message, as needed, after Connector/NET receives a connection-close notice from the server. Connector/NET closes the connection when it receives the notice in an active session or while a new session is being ... Deprecation and Removal Notes Functionality Added or Changed Bugs Fixed Deprecation and Removal Notes The IgnorePrepare ...
https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-config-metric-environment-category.html
Keep Files On Create Enabled If a MyISAM table is created with a DATA DIRECTORY or INDEX DIRECTORY option and an existing .MYD or .MYI file is found, MyISAM always returns an error. Show Old Temporals Enabled Whether SHOW CREATE TABLE output ...