Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-introduction.html
The MySQL Connector/ODBC is the name for the family of MySQL ODBC drivers (previously called MyODBC drivers) that provide access to a MySQL database using the industry standard Open Database Connectivity (ODBC) API. This reference covers ...For ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-opentelemetry.html
For applications on Linux systems that 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 server. Enabling and ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-support-version-history.html
This section highlights substantial changes per major Connector/ODBC release series, especially useful when updating legacy code. The connector release model changed after version 8.0, and now releases one version. Information about each ...This is ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-mysql.html
import _mysql_connector ccnx = _mysql_connector.MySQL() ccnx.connect(user='scott', password='password', host='127.0.0.1', database='employees') ccnx.close() Permitted arguments for the MySQL class are auth_plugin, buffered, charset_name, ... Syntax: ...It is also used to send commands and SQL statements and read ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-error.html
errors.Error is internally used by Connector/Python to raise MySQL client and server errors and should not be used by your application to raise exceptions. This exception is the base class for all other exceptions in the errors module. It can be ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-close.html
For a connection obtained from a connection pool, close() does not actually close it but returns it to the pool and makes it available for subsequent connection requests.
https://dev.mysql.com/doc/internals/en/starting-transaction-from-start-stmt-call.html
It holds state relevant data for the current client, such as identity, network connection and other per-connection data. thd->ha_data[my_handler_hton.slot] is a pointer in thd to the connection-specific data of this storage engine. The first method ...
https://dev.mysql.com/doc/mysql-installer/en/mysql-installer.html
These connectors include MySQL Connector/NET, MySQL Connector/Python, MySQL Connector/ODBC, MySQL Connector/J, MySQL Connector/Node.js, and MySQL Connector/C++. Note The connectors were bundled before MySQL Installer 1.6.7 (MySQL Server 8.0.34), and ... MySQL Installer is a standalone application designed to ease the complexity of installing and configuring MySQL products that run on Microsoft ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-start-stop-nodes.html
In addition, it provides for a way to check to see whether disconnection is required prior to stopping a node. Signature int ndb_mgm_stop3 ( NdbMgmHandle handle, int number, const int* list, int abort, int* disconnect ) Parameters ndb_mgm_stop3() ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-basic.html
*/ Ndb_cluster_connection cluster_connection(connectstring); if (cluster_connection.connect(4, 5, 1)) { std::cout << "Unable to connect to cluster within 30 secs." << std::endl; exit(-1); } /* Optionally connect and wait for the storage nodes ...