Search Results
https://dev.mysql.com/doc/internals/en/libmysql-directory.html
The files here are for producing MySQL as a library (for example, a Windows DLL). The idea is that, instead of producing separate mysql (client) and mysqld (server) programs, one produces a library. Instead of sending messages, the client part ...
https://dev.mysql.com/doc/internals/en/sleep.html
Example: --connection conn1 LOCK TABLE t1 WRITE; --connection conn2 # This will block in wait_for_lock(). send INSERT INTO t1 VALUES (1); --connection conn1 # Sleep until we can be sure that conn2 reached wait_for_lock(). In some cases race ...
https://dev.mysql.com/doc/internals/en/wait-condition.html
Example: --connection conn1 LOCK TABLE t1 WRITE; --connection conn2 # Get the id of this thread. send INSERT INTO t1 VALUES (1); --connection conn1 # Specify the condition that shows if conn2 reached wait_for_lock(). Like 'sleep', this method can ...
https://dev.mysql.com/doc/mysql-installer/en/mysql-installer-workflow-nonserver-products.html
Classic MySQL protocol connections to InnoDB Cluster Read/Write: Set the first base port number to one that is unused (between 80 and 65532) and the wizard will select the remaining ports for you. Regardless of where the router and client are ...
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-session.html
See Also load(T) , newInstance(java.lang.Class<T>, java.lang.Object) 4.3.1.22.13 getConnection() public abstract Connection getConnection(); Get the underlying database connection used by this session 4.3.1.22.14 getQueryBuilder() public abstract ...
https://dev.mysql.com/doc/ndbapi/en/mccj-overview-java.html
When using JDBC, you must write the SQL, manage the connection, and copy any data from the result set that you want to use in your program as objects. The JDBC implementation most often used with the MySQL Server is MySQL Connector/J. Using ... A ...
https://dev.mysql.com/doc/ndbapi/en/mgm-structures.html
int connect_count: The number of times this node has connected to or disconnected from the management server. char connect_address[]: The IP address of this node as seen by the other nodes in the cluster. int connect_count: The number of times this ... This section provides information about the data structures defined by the MGM ...
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-ndbeventoperation.html
NdbEventOperation::tableFragmentationChanged() Description This method is used to test whether a table's fragmentation has changed in connection with a TE_ALTER event. NdbEventOperation::tableFrmChanged() Description Use this method to determine ...
https://dev.mysql.com/doc/ndbapi/en/overview-application-programs.html
The main structure of an application program is as follows: Connect to a cluster using the Ndb_cluster_connection object. Initiate a database connection by constructing and initialising one or more Ndb objects. Terminate the connection to the ...