Search Results
                    
                    
            https://dev.mysql.com/doc/mysqld-version-reference/en/options-variables.html
                                 The following table shows all the options and variables available in MySQL Server. Intr: The version or versions in which the item was introduced. Depr: The version or versions in which the item was deprecated. Removed: The version or versions in ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ch04s03s04s01.html
                                 Table 4.120 com.mysql.clusterj.* Name Description DEFAULT_PROPERTY_CLUSTER_BYTE_BUFFER_POOL_SIZES "256, 10240, 102400, 1048576" DEFAULT_PROPERTY_CLUSTER_CONNECT_AUTO_INCREMENT_BATCH_SIZE 10 DEFAULT_PROPERTY_CLUSTER_CONNECT_AUTO_INCREMENT_START 1 ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-issues.html
                                Database views: Because MySQL database views do not use the NDB storage engine, ClusterJ applications cannot “see” views, and thus cannot access them.  This section discusses the limitations and known issues in the MySQL NDB Cluster Connector ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-overview-java.html
                                Unlike JDBC, JPA provides an object view of the data in the database. Like other persistence frameworks, ClusterJ uses the Data Mapper pattern, in which data is represented as domain objects, separate from business logic, mapping Java classes to ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-element.html
                                Parent class List Description The Element structure models an element of a list; it is used to store an object in a List populated by the Dictionary methods listObjects(), listIndexes(), and listEvents(). 
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-ndboperation.html
                                A single row in the database may have concurrent multiple lock holders (mode LM_Read) and may have multiple lock holders pending (LM_Exclusive), so releasing the claim of one lock holder may not result in a change to the observable lock status of ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-tablemetadata.html
                                The indexes array of TableMetadata contains one IndexMetadata object per table index. NDB implements a primary key as both an ordered index and a unique index, and might be viewed through the NDB API adapter as two indexes, but through a MySQL ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-delete.html
                                 FILE: delete.js var nosql = require('..'); var lib = require('./lib.js'); var adapter = 'ndb'; global.mysql_conn_properties = {}; var user_args = []; // *** program starts here *** // analyze command line var usageMessage = "Usage: node delete ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-find.html
                                 # FILE: find.js var nosql = require('..'); var lib = require('./lib.js'); var adapter = 'ndb'; global.mysql_conn_properties = {}; var user_args = []; // *** program starts here *** // analyze command line var usageMessage = "Usage: node find key\n" ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-examples-insert.html
                                 # FILE: insert.js var nosql = require('..'); var lib = require('./lib.js'); var adapter = 'ndb'; global.mysql_conn_properties = {}; var user_args = []; // *** program starts here *** // analyze command line var usageMessage = "Usage: node insert ...