Search Results
https://dev.mysql.com/doc/workbench/en/wb-keys.html
The following tables list keyboard shortcuts for MySQL Workbench commands.
https://dev.mysql.com/doc/internals/en/error-message-multiple-versions.html
It is critical that error codes are identical in all versions. That is, the value of ER_SOME_ERROR must be the same in all versions for which it is defined. (The discussion uses the name errmsg.txt, but when you cross the boundary from before MySQL ...
https://dev.mysql.com/doc/workbench/en/wb-using-view-tool.html
Views can also be added to an EER Diagram using the View tool on the vertical toolbar. Make sure that the EER Diagram tab is selected, then left-click the view icon on the vertical toolbar. The view icon is the two overlapping rectangles found ...
https://dev.mysql.com/doc/workbench/en/wb-foreign-key-relationships.html
Foreign key constraints are supported for the InnoDB storage engine only. For other storage engines, the foreign key syntax is correctly parsed but not implemented. MySQL Workbench enables you to add a foreign key from within the table editor or ...
https://dev.mysql.com/doc/ndbapi/en/mccj-using-clusterj-annotations.html
In ClusterJ (as in JPA), annotations are used to describe how the interface is mapped to tables in a database. The annotation @PersistenceCapable(table="employee") is used to let ClusterJ know which database table to map the Employee to (in this ...
https://dev.mysql.com/doc/workbench/en/wb-model-overview-privileges.html
The Schema Privileges panel has the following sections, used to create users for your schemas and to define roles: Users Roles The following figure displays the Schema Privileges section of the MySQL Model tab. Figure 9.7 Roles and Privileges ...
https://dev.mysql.com/doc/relnotes/mysql-monitor/8.0/en/news-8-0-30.html
Functionality Added or Changed Bugs Fixed Functionality Added or Changed The MySQL server, bundled with MySQL Enterprise Service Manager, has been upgraded to MySQL 8.0.29. The bundled JRE was updated to 1.8.0_331 for both the Agent and Service ...
https://dev.mysql.com/doc/workbench/en/wb-mforms.html
MySQL Workbench is implemented with a C++ core back-end, and a native front-end for each supported platform. Currently the front-end is implemented with Windows Forms on Microsoft Windows, GTK+ on Linux, and Cocoa on OS X / macOS. This approach ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-distribution.html
To obtain a Connector/C++ source distribution, visit the Connector/C++ downloads page. A Connector/C++ source distribution is packaged as a compressed tar file or Zip archive, denoted here as PACKAGE.tar.gz or PACKAGE.zip. A source distribution in ...
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 ...