Search Results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-data-structures.html
Do not try to make a copy of a MYSQL structure. MYSQL_RES This structure represents the result of a query that returns rows (SELECT, SHOW, DESCRIBE, EXPLAIN). MYSQL_ROW This is a type-safe representation of one row of data. (You cannot treat these ... This section describes C API data structures other than those used for prepared statements, the asynchronous interface, or the replication stream ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-call-statements.html
An application that executes a prepared CALL statement should use a loop that fetches a result and then invokes mysql_stmt_next_result() to determine whether there are more results. This section describes prepared-statement support in the C API for ...
https://dev.mysql.com/doc/ndb-operator/8.4/en/index.html
The information presented in this guide relating to MySQL NDB Cluster is current for recent releases up to and including NDB Cluster 8.4. For more information about NDB 8.4, see What is New in MySQL NDB Cluster 8.4. For help with using MySQL, please ... NDB Operator for Kubernetes Legal Notice NDB Operator Manual This is the NDB Operator Manual, which provides information about installing and using NDB Operator 8.4 for ...
https://dev.mysql.com/doc/relnotes/ndb-operator/8.4/en/news-8-4-1-1-4-1.html
This is MySQL NDB Operator 8.4.1-1.4.1, an LTS release of NDB Operator, a Kubernetes Operator for MySQL NDB Cluster. For additional downloads and the source of MySQL NDB Operator visit https://dev.mysql.com/downloads/ndb-operator/ and ...It was ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-explanations-ml-explain-row.html
mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); The following example loads the trained model. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-explanations-ml-explain-table.html
mysql> CALL sys.ML_TRAIN('census_data.census_train', 'revenue', JSON_OBJECT('task', 'classification'), @census_model); The following example loads the trained model. mysql> CALL sys.ML_MODEL_LOAD(@census_model, NULL); For more information about ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-scoring-an-anomaly-detection-model.html
mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('anomaly_detection_semi_supervised_use_case', NULL); Score the model with the ML_SCORE routine and use the accuracy metric.
https://dev.mysql.com/doc/connectors/en/connector-cpp-installation-source-cpp.html
The supported options are: WITH_BOOST WITH_LZ4 WITH_MYSQL WITH_PROTOBUF WITH_SSL WITH_ZLIB WITH_ZSTD For example, to use an external installation of Protobuf, instead of building it from bundled sources, specify the WITH_PROTOBUF option and provide ... 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-connp-props-connection.html
connectionAttributes A comma-delimited list of user-defined "key:value" pairs, in addition to standard MySQL-defined "key:value" pairs, to be passed to MySQL Server for display as connection attributes in the 'PERFORMANCE_SCHEMA' tables ...Setting ...
https://dev.mysql.com/doc/connectors/en/connector-net-interceptors.html
With MySQL Connector/NET, the interceptors are enabled and disabled by updating the connection string to refer to different sets of interceptor classes that you instantiate. The BaseCommandInterceptor class has these methods that you can override: ... An interceptor is a software design pattern that provides a transparent way to extend or modify some aspect of a program, similar to a user ...