Search Results
https://dev.mysql.com/doc/ndbapi/en/ndb-datafile.html
Datafile Class Constructor Description This method creates a new instance of Datafile, or a copy of an existing one. Signature To create a new instance: Datafile ( void ) To create a copy of an existing Datafile instance: Datafile ( const Datafile& ... This section provides information about the Datafile class, which models an NDB Cluster data ...
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-blobs-basic.html
*/ void drop_table(MYSQL &mysql) { if (mysql_query(&mysql, "DROP TABLE api_blob")) MYSQLERROR(mysql); } /* Functions to create table. This example illustrates the manipulation of a blob column in the NDB API. It demonstrates how to perform insert, ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-ndbrecord.html
*/ void drop_table(MYSQL &mysql) { if (mysql_query(&mysql, "DROP TABLE api_blob_ndbrecord")) MYSQLERROR(mysql); } /* Functions to create table. This example illustrates the manipulation of a blob column in the NDB API using the NdbRecord interface.
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-examples-scanning-basic.html
This example illustrates how to use the NDB scanning API. It shows how to perform a scan, how to scan for an update, and how to scan for a delete, making use of the NdbScanFilter and NdbScanOperation classes. The source code for this example may ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes.html
This program illustrates how to use secondary indexes in the NDB API. The source code for this example may be found in the NDB Cluster source tree, in storage/ndb/ndbapi-examples/ndbapi_simple_index/main.cpp.
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-simple-dual.html
This example demonstrates synchronous transactions and connecting to multiple clusters in a single NDB API application. The source code for this program may be found in the NDB Cluster source tree, in the file ...
https://dev.mysql.com/doc/ndbapi/en/ndb-logfilegroup.html
LogfileGroup Constructor Description The LogfileGroup class has two public constructors, one of which takes no arguments and creates a completely new instance. The Dictionary class also supplies methods for creating and destroying LogfileGroup ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbscanfilter.html
NdbScanFilter Constructor Description This is the constructor method for NdbScanFilter, and creates a new instance of the class. Doing so causes the next NdbScanFilter object to be created to employ SQL-compliant NULL comparison for all operations ...NdbScanFilter Class Overview NdbScanFilter::begin() NdbScanFilter::BinaryCondition NdbScanFilter::cmp() NdbScanFilter::cmp_param() NdbScanFilter Constructor NdbScanFilter::end() NdbScanFilter::eq() NdbScanFilter::isfalse() NdbScanFilter::isnotnull() NdbScanFilter::isnull() NdbScanFilter::istrue() NdbScanFilter::ge() NdbScanFilter::getNdbError() NdbScanFilter::getNdbOperation() NdbScanFilter::Group NdbScanFilter::gt() NdbScanFilter::le() NdbScanFilter::lt() NdbScanFilter::ne() NdbScanFilter::reset() NdbScanFilter::setSqlCmpSemantics() NdbScanFilter Class Overview Parent class None Child classes None Description NdbScanFilter provides an alternative means of specifying filters for scan ...