Search Results
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-ndbrecord.html
*/ #ifdef _WIN32 #include <winsock2.h> #endif #include <mysql.h> #include <mysqld_error.h> #include <NdbApi.hpp> /* Used for cout. */ void drop_table(MYSQL &mysql) { if (mysql_query(&mysql, "DROP TABLE api_blob_ndbrecord")) MYSQLERROR(mysql); } /* ... This example illustrates the manipulation of a blob column in the NDB API using the NdbRecord ...
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
*/ const NdbDictionary::Column *col1= myTable->getColumn("ATTR1"); if (col1 == NULL) APIERROR(myDict->getNdbError()); const NdbDictionary::Column *col2= myTable->getColumn("ATTR2"); if (col2 == NULL) APIERROR(myDict->getNdbError()); /* NdbRecord for ... 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-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-examples-synchronous-transactions.html
This example illustrates the use of synchronous transactions in the NDB API. 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 ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbscanfilter.html
NdbScanFilter Class Overview NdbScanFilter::begin() NdbScanFilter::BinaryCondition NdbScanFilter::cmp() NdbScanFilter::cmp_param() NdbScanFilter Constructor NdbScanFilter::end() NdbScanFilter::eq() NdbScanFilter::isfalse() NdbScanFilter::isnotnull() ...Because development of this interface is ongoing, the characteristics of the NdbScanFilter class are subject to change in future ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-transaction.html
This method takes as its sole argument a callback function that returns an error object. If it is automatic, (autocommit), every operation is performed as part of a new transaction that is automatically committed. Beginning, committing, and rolling ...
https://dev.mysql.com/doc/ndbapi/en/overview-compatibility.html
In the event that an application employing a newer version of the NDB API is run against an older cluster which does not support a newer feature used by the application, the application raises error code 4003 Function not implemented yet when trying ... The NDB API is now fairly mature, and has undergone few major changes in recent ...
https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-21.html
Schema validation is performed by the server, which returns an error message if a document in a collection does not match the schema definition or if the server does not support validation. Configuration Notes JSON Notes Security Notes X DevAPI ...