Search Results
MySQL NDB Cluster API Developer Guide :: 4.2.2.5 ClusterJ Mappings Between MySQL and Java Data Types
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-mappings.html
ClusterJ provides mappings for all of the common MySQL database types to Java types. Java object wrappers of primitive types should be mapped to nullable database columns. ClusterJ is implemented so as to be bug-compatible with the JDBC driver in ...Note Since Java does not have native unsigned data types, UNSIGNED columns should be avoided in table schemas if ...
https://dev.mysql.com/doc/ndbapi/en/ndb-dictionary.html
You can also specify whether or not the object names in the list are fully qualified (that is, whether the object name includes the database, schema, and possibly the table name). This means that they cannot be accessed by MySQL clients, and that ...
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-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-nodejs-api-session.html
A session is the main user access path to the database. TableMetadata getTableMetadata(String databaseName, String tableName, callback); Fetch metadata for table tableName in database databaseName. Session extends Context getMapping(Object ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-sessionfactory.html
openSession(Object mappings, Function(Object error, Session session) callback); Open a database session object. Resources required for sessions are allocated in advance; if those resources are not available, the method returns an error in the ...
https://dev.mysql.com/doc/ndbapi/en/ndb-table.html
This section provides information about the Table class, which models a database table in the NDB API. As with other database objects, Table object creation and attribute changes to existing tables done using the NDB API are not visible from MySQL.
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-array-adapter.html
This program inserts CHAR, VARCHAR, and BINARY column data into a table by constructing aRef objects using array adapters of the type defined in common/array_adapter.hpp (see Section 2.5.15, “Common Files for NDB API Array Examples”). It then ...
https://dev.mysql.com/doc/ndbapi/en/ndbapi-examples-array-simple.html
This program inserts CHAR, VARCHAR, and BINARY column data into a table by constructing aRef objects using local functions. It then reads the columns back and extracts the data from them using local functions. See Section 2.5.15, “Common Files ...
https://dev.mysql.com/doc/ndbapi/en/overview-adaptive-send.html
The NDB API is designed as a multithreaded interface, and so it is often desirable to transfer database operations from more than one thread at a time. There are four conditions leading to the transfer of database operations from Ndb object buffers ... Abstract Discusses the mechanics of transaction handling and transmission in NDB Cluster and the NDB API, and the objects used to implement ...