Search Results
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-constants.html
For details, see Ndb_cluster_connection::wait_until_ready() 4.3.1.14.31 PROPERTY_CLUSTER_CONNECT_TIMEOUT_MGM public static final String PROPERTY_CLUSTER_CONNECT_TIMEOUT_MGM = "com.mysql.clusterj.connect.timeout.mgm"; The name of the initial timeout ...The default means that the automatic reconnection due to network failures is ...
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-session.html
4.3.1.22.4 createQuery(QueryDefinition<T>) public abstract Query<T> createQuery(QueryDefinition<T> qd); Create a Query from a QueryDefinition. Table 4.47 createQuery(QueryDefinition<T>) Parameter Description qd the query definition return the query ...Session extends AutoCloseable so it can be used in the try-with-resources ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-start.html
In this section, we discuss how to start ClusterJ applications and the ClusterJ application environment. All of the ClusterJ jar files are normally found in share/mysql/java/ in the MySQL installation directory. When executing a ClusterJ ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-management-server-connections.html
This section provides information about MGM API functions that are used to initiate, configure, and terminate connections to an NDB management server. ndb_mgm_get_connectstring() ndb_mgm_get_configuration_nodeid() ndb_mgm_get_connected_port() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-basic-delete.html
This example shows deleting a row from a table already created and populated previously (see Section 2.5.1.2, “NDB API Basic Insertion Example”). It performs the deletion using a single NdbOperation within a transaction, and handles errors ...
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-basic-read.html
This example illustrates basic retrieval of one or more rows from an NDB table using the NdbRecord interface and an NdbScanOperation. We assume that you have already created and populated the basic table, perhaps using the row insertion example ...
https://dev.mysql.com/doc/ndbapi/en/ndb-index.html
Index::addColumnNames() Description This method is used to add several column names to an index definition at one time. Enumeration values Possible values are shown, along with descriptions, in the following table: Table 2.24 Index::Type data type ...Index Class Overview Index Class Constructor Index::addColumn() Index::addColumnName() Index::addColumnNames() Index::getColumn() Index::getLogging() Index::getName() Index::getNoOfColumns() Index::getObjectStatus() Index::getObjectVersion() Index::getObjectId() Index::getTable() Index::getType() Index::setLogging Index::setName() Index::setTable() Index::setType() Index::Type Index Class Overview Parent class NdbDictionary Child classes None Description This class represents an index on an NDB Cluster table ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndbindexscanoperation.html
Bounds must be set on initial sequences of index keys, and all but possibly the last bound must be nonstrict. NdbIndexScanOperation Class Overview NdbIndexScanOperation::BoundType NdbIndexScanOperation::end_of_bound() ...
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 ...