Search Results
https://dev.mysql.com/doc/workbench/en/wb-home.html
When started, MySQL Workbench opens to the home screen tab. Initially, the screen displays a welcome message and links to Browse Documentation >, Read the Blog >, and Discuss on the Forums >. In addition, the home screen provides quick access to ...
https://dev.mysql.com/doc/workbench/en/wb-performance-explain.html
The visual explain feature generates and displays a visual representation of the MySQL EXPLAIN statement by using extended information available in the extended JSON format. MySQL Workbench provides all of the EXPLAIN formats for executed queries ...
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-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/connectors/en/connector-cpp-apps-windows-notes.html
This section describes aspects of building Connector/C++ applications that are specific to Microsoft Windows. For general application-building information, see Section 2.5.1, “Building Connector/C++ Applications: General Considerations”. On ...
https://dev.mysql.com/doc/connectors/en/connector-j-reference-type-conversions.html
MySQL Connector/J is flexible in the way it handles conversions between MySQL data types and Java data types. In general, any MySQL data type can be converted to a java.lang.String, and any numeric type can be converted to any of the Java numeric ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-mysqlcommand.html
The MySqlCommand class represents a SQL statement to execute against a MySQL database. Class methods enable you to perform the following database operations: Query a database Insert, update, and delete data Return a single value Command-based ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-stored-proc.html
A stored procedure is a set of SQL statements that is stored in the server. Clients make a single call to the stored procedure, passing parameters that can influence the procedure logic and query conditions, rather than issuing individual hardcoded ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-trace-source.html
The .NET tracing architecture consists of four main parts: Source - This is the originator of the trace information. Switch - This defines the level of trace information to emit. Typically, this is specified in the app.config file, so that it is ...
https://dev.mysql.com/doc/connector-net/en/connector-net-faq.html
Questions 10.1: Are all commands executed after a transaction begins automatically enlisted in the transaction? 10.2: How do I obtain the value of an auto-incremented column? Questions and Answers10.1: Are all commands executed after a transaction ...