Search Results
                    
                    
            https://dev.mysql.com/doc/workbench/en/wb-sql-editor-snippets.html
                                 The Snippets secondary tab includes built-in, local, and shared custom snippets. The My Snippets option stores custom snippets in a file under the MySQL Workbench user's configuration directory. Using Snippets Snippets can be inserted into the SQL ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-tables-physical-schemata.html
                                 Double-clicking the Add table icon in the Physical Schemas section of the Model Overview tab adds a table with the default name of table1. If a table with this name already exists, the new table is named table2. Adding a new table automatically ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-tutorial-plugins-php-pdo.html
                                 MySQL Workbench includes a plugin that generates PHP code with the mysqli extension. This tutorial shows how to generate code with the PDO_MySQL extension for PHP. You might choose a different extension or a different language altogether, so adjust ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-what-is-new-61.html
                                 This section summarizes many of the new features added to MySQL Workbench 6.1, in relation to the MySQL Workbench 6.0 release. New Navigator PERFORMANCE Section Server Variable Groupings SQL Editor Views Home Screen Features Visual Explain Table ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-what-is-new-62.html
                                 This section summarizes many of the new features added to MySQL Workbench 6.2, in relation to the MySQL Workbench 6.1 release. Overlay Icons in the Object Viewer The schema navigator now includes shortcut buttons for common operations such as table ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-what-is-new-63.html
                                 This section summarizes many of the new features added to MySQL Workbench 6.3, in relation to the MySQL Workbench 6.2 release. The bundled sakila_full model now uses a dedicated 5.7 version to allow for 5.7 specific features, regardless of the ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-cpp.html
                                 To install Connector/C++ from source, verify that your system satisfies the requirements outlined in Section 2.4.1, “Source Installation System Prerequisites”. Configuring Connector/C++ Specifying External Dependencies Building Connector/C++ ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-client-authentication.html
                                 The server may want to authenticate a client and require the client to provide an SSL certificate to it, which it verifies against its known certificate authorities or performs additional checks on the client identity if needed (see CREATE USER ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-server-authentication.html
                                 Server authentication via server certificate verification is enabled when the Connector/J connection property sslMode is set to VERIFY_CA or VERIFY_IDENTITY. If sslMode is not set, server authentication via server certificate verification is ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-last-insert-id.html
                                 getGeneratedKeys() is the preferred method to use if you need to retrieve AUTO_INCREMENT keys and through JDBC; this is illustrated in the first example below. The second example shows how you can retrieve the same value using a standard SELECT ...