Search Results
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-extension-objects-examples.html
Example 11.1 Creating and Registering Extension Objects - Python This example creates a function hello_world() which is made available through the user-defined MySQL Shell global object demo. The code creates a new extension object and adds the ...
https://dev.mysql.com/doc/workbench/en/wb-generating-php.html
The example scenario that follows demonstrates how to create PHP code. After combining the two, the generated PHP code will look like this: <?php $host = "localhost"; $port = 3306; $socket = ""; $user = "nobody"; $password = ""; $dbname = "sakila"; ... MySQL Workbench can be used to generate PHP code with the bundled PHP plugin, by using the Tools, Utilities, Copy as PHP Code menu ...
https://dev.mysql.com/doc/workbench/en/wb-linux-uninstalling.html
Note By default, the Workbench configuration directory is ~username/mysql/workbench/ where "~username" is the path to your user's home directory. Also, uninstalling Workbench does not remove the .mysqlworkbench schema that Workbench creates when ...
https://dev.mysql.com/doc/workbench/en/wb-mac-uninstalling.html
Note By default, the Workbench configuration directory is ~username/Library/Application Support/MySQL/Workbench where "~username" is the path to your user's home directory. Also, uninstalling Workbench does not remove the .mysqlworkbench schema that ... To uninstall MySQL Workbench for macOS, locate MySQL Workbench in the Applications folder, right-click, and select Move to ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-opentelemetry.html
Connector/C++ supports a connection property option, OPT_OPENTELEMETRY, which has these values: OTEL_DISABLED: The connector does not create OpenTelemetry spans or forward the OpenTelemetry context to the server. Spans generated by the connector are ... For applications that use the legacy JDBC API (that is, not X DevAPI or X DevAPI for C) on Linux systems and use OpenTelemetry (OTel) instrumentation, the connector adds query and connection spans to the trace generated by application code and forwards the current OpenTelemetry context to the ...
https://dev.mysql.com/doc/connectors/en/connector-j-reference-dns-srv.html
It is the users' responsibility to provide a full service host name; Connector/J does not append any prefix nor validate the host name structure. The following are examples of valid service host name patterns: foo.domain.local ... Connector/J ...
https://dev.mysql.com/doc/connectors/en/connector-j-upgrading-to-8.0.html
Here are some changes for Connector/J going from 5.1 to 8.0 and beyond, for which adjustments might be required: 3.3.4.1.1 Running on the Java 8 Platform Connector/J 8.0 and beyond is created specifically to run on the Java 8 platform. Upgrading an ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-borland.html
With all Borland applications where the Borland Database Engine (BDE) is used, follow these steps to improve compatibility: Update to BDE 3.2 or newer. 5.8.2.2.1 Using Connector/ODBC with Borland Builder 4 When you start a query, you can use the ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-errors-error.html
This exception is the base class for all other exceptions in the errors module. It can be used to catch all errors in a single except statement. errors.Error is internally used by Connector/Python to raise MySQL client and server errors and should ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnectionpool-constructor.html
If this argument is not given, Connector/Python automatically generates the name, composed from whichever of the host, port, user, and database connection arguments are given in kwargs, in that order. An application that must distinguish pools by ...