Search



Search Results
Displaying 2431 to 2440 of 3661 total results
https://dev.mysql.com/doc/c-api/8.4/en/c-api-multiple-queries.html
After the connection to the server has been established, you can use the mysql_set_server_option() function to enable or disable multiple-statement execution by passing it an argument of MYSQL_OPTION_MULTI_STATEMENTS_ON or ... By default, ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-connect.html
mysql_real_connect() attempts to establish a connection to a MySQL server running on host. If passwd is NULL, only entries in the user table for the user that have a blank (empty) password field are checked for a match. See the note following this ... MYSQL * mysql_real_connect(MYSQL *mysql, const char *host, const char *user, const char *passwd, const char *db, unsigned int port, const char *unix_socket, unsigned long client_flag) Description Note mysql_real_connect() is a synchronous ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-use-result.html
MYSQL_RES * mysql_use_result(MYSQL *mysql) Description After invoking mysql_real_query() or mysql_query(), you must call mysql_store_result() or mysql_use_result() for every statement that successfully produces a result set (SELECT, SHOW, DESCRIBE, ...You must also call mysql_free_result() after you are done with the result ...
https://dev.mysql.com/doc/relnotes/mysql-shell/8.4/en/news-8-4-3.html
(Bug #36657628) Running AdminAPI operations against MySQL 5.7 instances resulted in an error, due to an attempt to run a query on a non-existent Performance Schema table. (Bug #35495220) Utilities Bugs Fixed The upgrade checker utility returned a ...
https://dev.mysql.com/doc/relnotes/mysql-router/8.4/en/news-8-4-0.html
(Bug #36246652) MySQL Router's bootstrap process checks the mysql.user table for the unsupported mysql_native_password authentication plugin. (Bug #36105279) If an incoming port is opened and closed by a TCP connection, such as a load balancer or a ... Deprecation and Removal Notes Functionality Added or Changed Bugs Fixed Deprecation and Removal Notes The configuration option bootstrap_server_addresses, deprecated in MySQL Router 8.0.14, is removed in this ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-output-formats.html
MySQL Shell can print results in table, tabbed, or vertical format, or as pretty or raw JSON output. Alternatively, the command line option --result-format or its aliases (--table, --tabbed, --vertical) can be used at startup to specify the output ...The MySQL Shell configuration option resultFormat can be used to specify any of these output formats as a persistent default for all sessions, or just for the current ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-utilities-debug-diagnostics.html
top_biggest_tables: lists the largest tables on the connected server and the slow performance indicators. This option requires you to enable slow_log on the target server and configure its output to TABLE. This option generates the following ... The ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-limitations.html
Memory Limitations The table used to train a model cannot exceed 10 GB, 100 million rows, or 1017 columns. Routine and Query Limitations ML_EXPLAIN_TABLE and ML_PREDICT_TABLE are compute intensive processes, with ML_EXPLAIN_TABLE being the most ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-predictions.html
Predictions are generated by running ML_PREDICT_ROW or ML_PREDICT_TABLE on trained models. The row or table of data must have the same feature columns as the data used to train the model. ML_PREDICT_TABLE generates predictions for an entire table ...If the target column exists in the data to run predictions on, it is not considered during prediction ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-topic-modeling-prepare.html
mysql> CREATE DATABASE topic_modeling_data; mysql> USE topic_modeling_data; Create the table to use for both training and testing. mysql> CREATE TABLE movies ( description TEXT ); Insert the sample data into the table. This topic describes how to ...
Displaying 2431 to 2440 of 3661 total results