Search



Search Results
Displaying 331 to 340 of 831 total results
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-dynamicobject.html
public abstract class DynamicObject {// Public Constructors public DynamicObject();// Public Methods public final ColumnMetadata[] columnMetadata(); public final DynamicObjectDelegate delegate(); public final void delegate(DynamicObjectDelegate ...
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-dynamicobjectdelegate.html
public interface DynamicObjectDelegate {// Public Methods public abstract ColumnMetadata[] columnMetadata(); public abstract Boolean found(); public abstract void found(Boolean found); public abstract Object get(int columnNumber); public abstract ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-annotations.html
In ClusterJ (as in JPA), annotations are used to describe how the interface is mapped to tables in a database. The annotation @PersistenceCapable(table="employee") is used to let ClusterJ know which database table to map the Employee to (in this ...
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. Note Since Java does not have native unsigned data types, UNSIGNED columns ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-tables.html
ClusterJ's main purpose is to read, write, and update row data in an existing database, rather than to perform DDL. You can create the employee table that matches this interface, using the following CREATE TABLE statement, in a MySQL client ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-management-server-handles.html
This section provides information about MGM API functions used to create and destroy management server handles (see NdbMgmHandle). ndb_mgm_create_handle() ndb_mgm_set_name() ndb_mgm_set_ignore_sigpipe() ndb_mgm_destroy_handle() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-datafile.html
This section provides information about the Datafile class, which models an NDB Cluster data file. Datafile Class Overview Datafile Class Constructor Datafile::getFileNo() Datafile::getFree() Datafile::getNode() Datafile::getObjectId() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-errors-handling.html
Abstract This section describes how NDB API errors can be detected and mapped onto particular operations. NDB API errors can be generated in either of two ways: When an operation is defined When an operation is executed Errors raised during ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-connect.html
This example, which can also be found in storage/ndb/ndbapi-examples/ndbapi_basic/ndbapi_basic_connect.cpp, demonstrates the use of Ndb_cluster_connection to connect to an NDB management server using a given connection string. On success, it ...
https://dev.mysql.com/doc/ndbapi/en/ndb-index.html
Index Class Overview Index Class Constructor Index::addColumn() Index::addColumnName() Index::addColumnNames() Index::getColumn() Index::getLogging() Index::getName() Index::getNoOfColumns() Index::getObjectStatus() Index::getObjectVersion() ...
Displaying 331 to 340 of 831 total results