Search Results
https://dev.mysql.com/doc/ndbapi/en/mccj-overview-clusterj-object-models.html
In addition, it enables the user to mark a transaction as being rollback-only, which makes it possible for a component that is not responsible for completing a transaction to indicate that—due to an application or database error—the transaction ... This section discusses the ClusterJ API and the object model used to represent the data handled by the ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-backup.html
Return value In case of an error, this function returns -1. 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() ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-management-server-handles.html
This section provides information about MGM API functions used to create and destroy management server handles (see NdbMgmHandle). ndb_mgm_create_handle() ndb_mgm_set_name() ndb_mgm_set_ignore_sigpipe() ndb_mgm_destroy_handle() ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-single-user-mode.html
The MGM API makes it possible for the programmer to put the cluster into single-user mode—and to return it to normal mode again—from within an application. This section covers the functions that are used for these operations.
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-connect.html
If it is unable to connect to the management or to the data nodes, it prints an appropriate error and exits. This example, which can also be found in storage/ndb/ndbapi-examples/ndbapi_basic/ndbapi_basic_connect.cpp, demonstrates the use of ...
https://dev.mysql.com/doc/ndbapi/en/ndb-hashmap.html
Return value Returns 0 on success; on failure, returns -1 and sets error. This section provides information about the HashMap class, which models a hash map in an NDB Cluster. HashMap Class Overview HashMap Constructor HashMap::setName() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbdictionary.html
If the attribute ID is not part of the NdbRecord, or if it is not nullable, this method returns an error (-1). This section provides information about the NdbDictionary class, which stores meta-information about NDB database objects, such as ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbindexscanoperation.html
NdbIndexScanOperation Class Overview NdbIndexScanOperation::BoundType NdbIndexScanOperation::end_of_bound() NdbIndexScanOperation::getDescending() NdbIndexScanOperation::get_range_no() NdbIndexScanOperation::getSorted() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-session.html
A session is the main user access path to the database. Session extends Context getMapping(Object parameter, Function(Object err, Object mapping) callback); Get the mappings for a table or class. The parameter may be a table name, a mapped ...
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 ...