Search Results
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-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 ...
https://dev.mysql.com/doc/ndbapi/en/ndb-tablespace.html
For an overview of Cluster Disk Data and data file characteristics, see CREATE TABLESPACE Statement, in the MySQL Manual. Tablespace Constructor Description These methods are used to create a new instance of Tablespace, or to copy an existing one.
https://dev.mysql.com/doc/ndbapi/en/overview-application-level-partitioning.html
There is no restriction against instantiating multiple Ndb_cluster_connection objects representing connections to different management servers in a single application, nor against using these for creating multiple instances of the Ndb class. An ...