https://dev.mysql.com/mysql-cluster-programs-ndb-mgm.html
--try-reconnect=number Property Value Command-Line Format --try-reconnect=# Deprecated Yes Type Numeric Type Integer Default Value 12 Default Value 3 Minimum Value 0 Maximum Value 4294967295 If the connection to the management server is broken, the ... The ndb_mgm management client process is actually not needed to run the ...
https://dev.mysql.com/mysql-cluster-programs-ndbd.html
--logbuffer-size=# Property Value Command-Line Format --logbuffer-size=# Type Integer Default Value 32768 Minimum Value 2048 Maximum Value 4294967295 Sets the size of the data node log buffer. ndbd is the process that is used to handle all the data ...
https://dev.mysql.com/mysql-cluster-replication-conflict-resolution.html
However, the data type of this column is never TIMESTAMP; instead, its data type should be INT (INTEGER) or BIGINT. When using a replication setup involving multiple masters (including circular replication), it is possible that different masters ...
https://dev.mysql.com/mysql-cluster-replication-general.html
This can be done by starting each SQL node using the --server-id=id option, where id is a unique integer. A replication channel requires two MySQL servers acting as replication servers (one each for the master and slave). For example, this means ...
https://dev.mysql.com/mysql-fetch-lengths.html
An array of unsigned long integers representing the size of each column (not including any terminating null bytes). unsigned long *mysql_fetch_lengths(MYSQL_RES *result) Returns the lengths of the columns of the current row within a result set. If ...
https://dev.mysql.com/mysql-field-count.html
An unsigned integer representing the number of columns in a result set. unsigned int mysql_field_count(MYSQL *mysql) Returns the number of columns for the most recent query on the connection. The normal use of this function is when ...
https://dev.mysql.com/mysql-get-proto-info.html
An unsigned integer representing the protocol version used by the current connection. unsigned int mysql_get_proto_info(MYSQL *mysql) Returns the protocol version used by current connection.
https://dev.mysql.com/mysql-next-result-nonblocking.html
The two functions differ as follows: mysql_next_result() returns an integer status indicator. enum net_async_status mysql_next_result_nonblocking(MYSQL *mysql) Note mysql_next_result_nonblocking() is an asynchronous function. It is the counterpart ...
https://dev.mysql.com/mysql-num-fields.html
An unsigned integer representing the number of columns in a result set. unsigned int mysql_num_fields(MYSQL_RES *result) To pass a MYSQL* argument instead, use unsigned int mysql_field_count(MYSQL *mysql). You can get the number of columns either ...
https://dev.mysql.com/mysql-real-query-nonblocking.html
The two functions differ as follows: mysql_real_query() returns an integer status indicator. enum net_async_status mysql_real_query_nonblocking(MYSQL *mysql, const char *stmt_str, unsigned long length) Note mysql_real_query_nonblocking() is an ...