Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/windows-restrictions.html
                                 The following restrictions apply to use of MySQL on the Windows platform: Process memory On Windows 32-bit platforms, it is not possible by default to use more than 2GB of RAM within a single process, including MySQL. This is because the physical ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/windows-select-server.html
                                 The following table shows the available servers for Windows in MySQL 8.4. Binary Description mysqld Optimized binary with named-pipe support mysqld-debug Like mysqld, but compiled with full debugging and automatic memory allocation checking Each of ...
                                            
                https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/bugs.backup.html
                                 Please refer to the MySQL Enterprise Backup 8.4 Release Notes for a list of fixed bugs for mysqlbackup. Here is a list of limitations of MySQL Enterprise Backup: In some cases, backups of non-transactional tables such as MyISAM tables could contain ...
                                            
                https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/trouble.logging.html
                                 Besides the message output of MySQL Enterprise Backup to the stderr stream and the log file, progress and history of each backup are also logged into the mysql.backup_progress and mysql.backup_history tables on the backed-up servers (to skip ...
                                            
                https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-import-cluster-create-configure.html
                                If the executables are in /home/ari/bin/cluster/bin, it is sufficient to specify /home/ari/bin/cluster; MySQL Cluster Manager automatically checks for the binaries in a bin directory within the directory specified by --basedir. Once this is done, we ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-list-fields.html
                                 MYSQL_RES * mysql_list_fields(MYSQL *mysql, const char *table, const char *wild) Description Note mysql_list_fields() is deprecated and is subject to removal in a future version of MySQL. Instead, use mysql_real_query() or mysql_query() to execute ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-query.html
                                 int mysql_query(MYSQL *mysql, const char *stmt_str) Description Executes the SQL statement pointed to by the null-terminated string stmt_str. Normally, the string must consist of a single SQL statement without a terminating semicolon (;) or \g. If ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-query.html
                                 int mysql_real_query(MYSQL *mysql, const char *stmt_str, unsigned long length) Description Note mysql_real_query() is a synchronous function. Its asynchronous counterpart is mysql_real_query_nonblocking(), for use by applications that require ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-send-long-data.html
                                 bool mysql_stmt_send_long_data(MYSQL_STMT *stmt, unsigned int parameter_number, const char *data, unsigned long length) Description Enables an application to send parameter data to the server in pieces (or “chunks”). It can be called multiple ...
                                            
                https://dev.mysql.com/doc/extending-mysql/8.4/en/mysql-test-suite.html
                                 The test system that is included in Unix source and binary distributions makes it possible for users and developers to perform regression tests on the MySQL code. For information, including system requirements, see The MySQL Test Framework in the ...