Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/known-issues.html
                                Even if you use lower_case_table_names=2 (which enables MySQL to remember the case used for databases and table names), MySQL does not remember the case used for database names for the function DATABASE() or within the various logs (on ... This ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-programs-ndb-desc.html
                                You can obtain such information, using the mysql client, from the table_distribution_status, table_fragments, table_info, and table_replicas tables in the ndbinfo database. --context, -x Show additional contextual information for the table such as ... ndb_desc provides a detailed description of one or more NDB ...
                                            
                https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-faq.html
                                This file represents the InnoDB system tablespace, which grows but never shrinks as a database server operates, and is included in every full and incremental backup. Those tables are split off from the system tablespaces into separate .ibd files; ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-basic-function-reference.html
                                 The following table summarizes the functions available in the C API basic interface. For greater detail, see the descriptions in Section 5.4, “C API Basic Function Descriptions”. 
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-function-reference.html
                                 The following table summarizes all functions available for the MySQL C API. 
                                            
                https://dev.mysql.com/doc/workbench/en/wb-intro.html
                                MySQL Workbench is a graphical tool for working with MySQL servers and databases. MySQL Workbench functionality covers five main topics: SQL Development: Enables you to create and manage connections to database servers. Along with enabling you to ...
                                            
                https://dev.mysql.com/doc/workbench/en/workbench-faq.html
                                How do I create a MySQL database (schema) in MySQL Workbench? A.4. Depending on how you set up the users, they may (or may not) both have rights to see and use the same databases (information). How do I create a MySQL database (schema) in MySQL ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-connection.html
                                 For your MySQL Connector/NET application to connect to a MySQL database, it must establish a connection by using a MySqlConnection object. The connection string provides necessary information to make the connection to the MySQL database. Before the ...The MySqlConnection constructor takes a connection string as one of its ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-odbc-errors.html
                                Transactions are supported within MySQL when using the InnoDB database engine, which is the default storage engine in MySQL 5.5 and higher. Check the following before continuing: Verify that your MySQL server supports a transactional database engine. Verify that the tables you are updating use a transactional database ... The following section ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-option-files.html
                                Suppose that /etc/mysql/connectors.conf contains these lines: [client] database=cpyapp The following connect() call includes no database connection argument. The resulting connection uses cpyapp, the database specified in the option file: cnx = ...