Search Results
https://dev.mysql.com/doc/ndbapi/en/index.html
MySQL NDB Cluster API Developer Guide This is the MySQL NDB Cluster API Developer Guide, which provides information about developing applications using MySQL NDB Cluster as a data store. MySQL NDB Cluster 8.0, 8.4, and 9.0 also provide support for ...
https://dev.mysql.com/doc/ndbapi/en/mccj.html
Because ClusterJ does not use the MySQL Server to access data in NDB Cluster, it can perform some operations much more quickly than can be done using JDBC. This chapter discusses using NDB Cluster with MySQL NDB Cluster Connector for Java, also ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-cluster-log.html
Signature int ndb_mgm_set_clusterlog_severity_filter ( NdbMgmHandle handle, enum ndb_mgm_event_severity severity, int enable, struct ndb_mgm_reply* reply ) Parameters This function takes 4 parameters: A management server handle. This section ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-error-handling.html
ndb_mgm_get_latest_error() ndb_mgm_get_latest_error_msg() ndb_mgm_get_latest_error_desc() ndb_mgm_set_error_stream() ndb_mgm_get_latest_error() Description This function is used to get the latest error code associated with a given management server ... This section provides information about MGM API functions used for error ...
https://dev.mysql.com/doc/ndbapi/en/ndb-error-codes-internal-error.html
The following list enumerates all NDB errors of type IE (Internal error). The index needs to be dropped and recreated NDB error code 914 MySQL error DMEC Error message Invalid index stats request NDB error code 916 MySQL error DMEC Error message ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-delete.html
This example shows deleting a row from a table already created and populated previously (see Section 2.5.1.2, “NDB API Basic Insertion Example”). It performs the deletion using a single NdbOperation within a transaction, and handles errors ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-insert.html
You can also find the source code for this example in the file storage/ndb/ndbapi-examples/ndbapi_basic/ndbapi_basic_insert.cpp.
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-read.html
This example illustrates basic retrieval of one or more rows from an NDB table using the NdbRecord interface and an NdbScanOperation. We assume that you have already created and populated the basic table, perhaps using the row insertion example ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-handling-errors.html
This program demonstrates handling errors and retrying failed transactions using the NDB API. The source code for this example can be found in storage/ndb/ndbapi-examples/ndbapi_retries/ndbapi_retries.cpp in the NDB Cluster source tree. In this ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbscanoperation.html
The batch parameter specifies how many records will be returned to the client from the server by the next NdbScanOperation::nextResult(true) method call. NdbScanOperation Class Overview NdbScanOperation::close() ...