Search Results
                    
                    
            https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-show-settings.html
                                 show settings [--hostinfo | --tls] This command lists the current values of a number of mcmd options: mcm> show settings; +---------+----------------+-----------------------------------------------------+ | Section | Setting | Value | ...
                                            
                https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-site-commands.html
                                 In this section, we discuss commands used to work with MySQL Cluster Manager management sites. In addition, the stop agents, show settings, version, and show warnings commands, which relate to management agents, are also covered in this section. A ...
                                            
                https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-terminology.html
                                The MySQL Cluster Manager client is a software application that allows a user to connect to MySQL Cluster Manager and perform administrative tasks, such as (but not limited to): creating, starting, and stopping clusters; obtaining cluster and ...
                                            
                https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-agents.html
                                 This section explains how to back up configuration data for mcmd agents and how to restore the backed-up agent data. Used together with the backup cluster command, the backup agents command allows you to backup and restore a complete ...
                                            
                https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-version.html
                                 version This command displays the version of the MySQL Cluster Manager software in use by the MySQL Cluster Manager agent to which this client is connected, as shown here: mcm> version; +--------------------------------------+ | Version | ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-interface-usage.html
                                Program notes: mysql is assumed to be a valid connection handler.  The following simple example program demonstrates the binary log C API functions. The initial SET statement sets the @source_binlog_checksum user-defined variable that the server ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-building-clients.html
                                Similarly, if you get undefined-reference errors for other functions that should exist on your system, such as connect(), check the manual page for the function in question to determine which libraries you should add to the link command.  This ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-call-statements.html
                                 This section describes prepared-statement support in the C API for stored procedures executed using CALL statements: Stored procedures executed using prepared CALL statements can be used in the following ways: A stored procedure can produce any ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-date-handling.html
                                The mysql variable is assumed to be a valid connection handler.  The binary (prepared statement) protocol enables you to send and receive date and time values (DATE, TIME, DATETIME, and TIMESTAMP), using the MYSQL_TIME structure. The members of this ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/getting-unique-id.html
                                For LAST_INSERT_ID(), the most recently generated ID is maintained in the server on a per-connection basis. For information on obtaining the auto-incremented value when using Connector/J, see Retrieving AUTO_INCREMENT Column Values through JDBC. For ... If you insert a record into a table that contains an AUTO_INCREMENT column, you can obtain the value stored into that column by calling the mysql_insert_id() ...