Search Results
https://dev.mysql.com/doc/workbench/en/workbench-faq.html
As for multiple connections to the same local MySQL server, you might have one connection using "root" with another using a less privileged user. Depending on how you set up the users, they may (or may not) both have rights to see and use the same ... FAQ Categories Basic Usage MySQL Workbench Functionality Data Management General Basic Usage ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-apps-windows-notes.html
Target hosts running client applications must have an acceptable version of the Visual C++ Redistributable for Visual Studio installed. (This helps when using compatibility libraries with an old ABI together with new libraries having a different ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-cpp.html
If you build legacy dynamic libraries, they have these names: libmysqlcppconn.so.7 (Unix) libmysqlcppconn.7.dylib (macOS) mysqlcppconn-7-vs14.dll (Windows) If you build legacy static libraries, they have these names: libmysqlcppconn-static.a (Unix, ... To install Connector/C++ from source, verify that your system satisfies the requirements outlined in Section 2.4.1, “Source Installation System ...
https://dev.mysql.com/doc/connectors/en/connector-j-config-failover.html
However, this does not mean the client does not have to deal with the exception that triggered the server switch. Note that for the driver, each call to a Statement.execute*() method increments the query execution counter; therefore, when calls are ...A failover happens when connection-related errors occur for an underlying, active ...
https://dev.mysql.com/doc/connectors/en/connector-j-installing-source.html
To install MySQL Connector/J from source, make sure that you have the following software on your system: Tip It is suggested that the latest versions available for the following software be used for compiling Connector/J; otherwise, some features ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-stored-procedures.html
Calling a stored procedure from your Connector/NET application is similar to techniques you have seen earlier in this tutorial. Putting database-intensive operations into stored procedures lets you define an API for your database application. You ...
https://dev.mysql.com/doc/connectors/en/connector-python-coding.html
For example, in MySQL tables, you typically use numeric IDs rather than string-based dictionary keys, so that the key values are compact and have a predictable length. Validate input values to make sure they have only the expected characters. Even ... The following guidelines cover aspects of developing MySQL applications that might not be immediately obvious to developers coming from a Python background: For security, do not hardcode the values needed to connect and log into the database in your main ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-stored-procedures.html
Calling a stored procedure from your Connector/NET application is similar to techniques you have seen earlier in this tutorial. Putting database-intensive operations into stored procedures lets you define an API for your database application. You ...
https://dev.mysql.com/doc/connector-python/en/connector-python-coding.html
For example, in MySQL tables, you typically use numeric IDs rather than string-based dictionary keys, so that the key values are compact and have a predictable length. Validate input values to make sure they have only the expected characters. Even ... The following guidelines cover aspects of developing MySQL applications that might not be immediately obvious to developers coming from a Python background: For security, do not hardcode the values needed to connect and log into the database in your main ...
https://dev.mysql.com/doc/internals/en/coding-style.html
Please have a look at the C/C++ coding guidelines and apply them when they make sense. Some more or less strict rules: Try to have a good readable text flow. Avoid lines longer than ~ 100 characters unless there is no other choice. Think about a ...