Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/glossary.html
For the MySQL Enterprise Backup product, the file name of the binary log and the current position within the file are important details. For this reason, and because of the higher reliability and concurrency possible with InnoDB tables, most ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-model-viewing.html
A model explanation helps you identify the features that are most important to the model overall. For example, a negative value for the permutation importance explainer means that the feature is not important. The output displays feature importance ... To view the details for the models in your model catalog, query the MODEL_CATALOG ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-mysqlai-ml-explain.html
ML_EXPLAIN Syntax mysql> CALL sys.ML_EXPLAIN ('table_name', 'target_column_name', model_handle, [options]); options: { JSON_OBJECT("key","value"[,"key","value"] ...) "key","value": { ['model_explainer', ... Running the ML_EXPLAIN routine on a model ...
https://dev.mysql.com/doc/workbench/en/dbdoc-templates.html
Markers can be any of the following types: Template Include Comment Set delimiter Pragma Variable Section start and Section end The last two are the most commonly used in MySQL Workbench templates and these important markers are briefly described in ... This section provides an overview of creating and modifying DBDoc Model Reporting templates, as used by MySQL ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-apps-general-considerations.html
This section discusses general considerations to keep in mind when building Connector/C++ applications. For information that applies to particular platforms, see the section that applies to your platform in Section 2.5.2, “Building Connector/C++ ...
https://dev.mysql.com/doc/connectors/en/connector-j-server-authentication.html
This can be accomplished by either importing the certificate (ca.pem or any other certificate) into the Java default truststore (although tampering the default truststore is not recommended) or by importing it into a custom Java truststore file and ... Server authentication via server certificate verification is enabled when the Connector/J connection property sslMode is set to VERIFY_CA or ...
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-mysqlcursorprepared.html
import mysql.connector cnx = mysql.connector.connect(database='employees') cursor = cnx.cursor(prepared=True) Alternatively, create an instance of the MySQLCursorPrepared class using the cursor_class argument to the cursor() method. import ...In ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-transaction.html
The AUTO_INCREMENT column option for the primary key of the employees table is important to ensure reliable, easily searchable data. Inserting or updating data is also done using the handler structure known as a cursor. When you use a transactional ...
https://dev.mysql.com/doc/connectors/en/connector-python-logging.html
By default, logging functionality follows the default Python logging behavior. If logging functionality is not configured, only events with a severity level of WARNING and greater are printed to sys.stderr. For related information, see Python's ...