MySQL 5.6.14 Source Code Document
|
Static Public Attributes | |
static final String | PROPERTY_CLUSTER_CONNECTION_SERVICE = "com.mysql.clusterj.connection.service" |
static final String | PROPERTY_CLUSTER_CONNECTSTRING = "com.mysql.clusterj.connectstring" |
static final String | PROPERTY_CLUSTER_CONNECT_RETRIES = "com.mysql.clusterj.connect.retries" |
static final int | DEFAULT_PROPERTY_CLUSTER_CONNECT_RETRIES = 4 |
static final String | PROPERTY_CONNECTION_POOL_SIZE = "com.mysql.clusterj.connection.pool.size" |
static final int | DEFAULT_PROPERTY_CONNECTION_POOL_SIZE = 1 |
static final String | PROPERTY_CONNECTION_POOL_NODEIDS = "com.mysql.clusterj.connection.pool.nodeids" |
static final String | PROPERTY_CLUSTER_CONNECT_DELAY = "com.mysql.clusterj.connect.delay" |
static final int | DEFAULT_PROPERTY_CLUSTER_CONNECT_DELAY = 5 |
static final String | PROPERTY_CLUSTER_CONNECT_VERBOSE = "com.mysql.clusterj.connect.verbose" |
static final int | DEFAULT_PROPERTY_CLUSTER_CONNECT_VERBOSE = 0 |
static final String | PROPERTY_CLUSTER_CONNECT_TIMEOUT_BEFORE = "com.mysql.clusterj.connect.timeout.before" |
static final int | DEFAULT_PROPERTY_CLUSTER_CONNECT_TIMEOUT_BEFORE = 30 |
static final String | PROPERTY_CLUSTER_CONNECT_TIMEOUT_AFTER = "com.mysql.clusterj.connect.timeout.after" |
static final int | DEFAULT_PROPERTY_CLUSTER_CONNECT_TIMEOUT_AFTER = 20 |
static final String | PROPERTY_CLUSTER_DATABASE = "com.mysql.clusterj.database" |
static final String | DEFAULT_PROPERTY_CLUSTER_DATABASE = "test" |
static final String | PROPERTY_CLUSTER_MAX_TRANSACTIONS = "com.mysql.clusterj.max.transactions" |
static final int | DEFAULT_PROPERTY_CLUSTER_MAX_TRANSACTIONS = 4 |
static final String | PROPERTY_DEFER_CHANGES = "com.mysql.clusterj.defer.changes" |
static final String | SESSION_FACTORY_SERVICE_CLASS_NAME = "com.mysql.clusterj.SessionFactoryService" |
static final String | SESSION_FACTORY_SERVICE_FILE_NAME = "META-INF/services/" + SESSION_FACTORY_SERVICE_CLASS_NAME |
static final String | PROPERTY_JDBC_DRIVER_NAME = "com.mysql.clusterj.jdbc.driver" |
static final String | PROPERTY_JDBC_URL = "com.mysql.clusterj.jdbc.url" |
static final String | PROPERTY_JDBC_USERNAME = "com.mysql.clusterj.jdbc.username" |
static final String | PROPERTY_JDBC_PASSWORD = "com.mysql.clusterj.jdbc.password" |
Constants used in the ClusterJ project.
Definition at line 23 of file Constants.java.
|
static |
The default value of the connection delay property
Definition at line 64 of file Constants.java.
|
static |
The default value of the connection retries property
Definition at line 39 of file Constants.java.
|
static |
The default value of the connection timeout after property
Definition at line 88 of file Constants.java.
|
static |
The default value of the connection timeout before property
Definition at line 80 of file Constants.java.
|
static |
The default value of the connection verbose property
Definition at line 72 of file Constants.java.
|
static |
The default value of the database property
Definition at line 96 of file Constants.java.
|
static |
The default value of the maximum number of transactions property
Definition at line 104 of file Constants.java.
|
static |
The default value of the connection pool size property
Definition at line 49 of file Constants.java.
|
static |
The name of the connection delay property. For details, see Ndb_cluster_connection::connect()
Definition at line 61 of file Constants.java.
|
static |
The name of the connection retries property. For details, see Ndb_cluster_connection::connect()
Definition at line 36 of file Constants.java.
|
static |
The name of the connection timeout after property. For details, see Ndb_cluster_connection::wait_until_ready()
Definition at line 85 of file Constants.java.
|
static |
The name of the connection timeout before property. For details, see Ndb_cluster_connection::wait_until_ready()
Definition at line 77 of file Constants.java.
|
static |
The name of the connection verbose property. For details, see Ndb_cluster_connection::connect()
Definition at line 69 of file Constants.java.
|
static |
The name of the connection service property
Definition at line 26 of file Constants.java.
|
static |
The name of the connection string property. For details, see Ndb_cluster_connection constructor
Definition at line 31 of file Constants.java.
|
static |
The name of the database property. For details, see the catalogName parameter in the Ndb constructor. Ndb constructor
Definition at line 93 of file Constants.java.
|
static |
The name of the maximum number of transactions property. For details, see Ndb::init()
Definition at line 101 of file Constants.java.
|
static |
The name of the connection pool node ids property. There is no default. This is the list of node ids to force the connections to be assigned to specific node ids. If this property is specified and connection pool size is not the default, the number of node ids of the list must match the connection pool size, or the number of node ids must be 1 and node ids will be assigned to connections starting with the specified node id.
Definition at line 56 of file Constants.java.
|
static |
The name of the connection pool size property. This is the number of connections to create in the connection pool. The default is 1 (all sessions share the same connection; all requests for a SessionFactory with the same connect string and database will share a single SessionFactory). A setting of 0 disables pooling; each request for a SessionFactory will receive its own unique SessionFactory.
Definition at line 46 of file Constants.java.
|
static |
The flag for deferred inserts, deletes, and updates
Definition at line 107 of file Constants.java.
|
static |
The name of the jdbc driver
Definition at line 118 of file Constants.java.
|
static |
The jdbc password
Definition at line 130 of file Constants.java.
|
static |
The jdbc url
Definition at line 122 of file Constants.java.
|
static |
The jdbc username
Definition at line 126 of file Constants.java.
|
static |
The name of the session factory service interface
Definition at line 110 of file Constants.java.
|
static |
The name of the files with names of implementation classes for session factory service
Definition at line 114 of file Constants.java.