Search



Search Results
Displaying 781 to 790 of 1830 total results
https://dev.mysql.com/doc/c-api/8.4/en/mysql-hex-string.html
unsigned long mysql_hex_string(char *to, const char *from, unsigned long length) Description This function creates a legal SQL string for use in an SQL statement. The string in the from argument is encoded in hexadecimal format, with each character ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-num-fields.html
unsigned int mysql_num_fields(MYSQL_RES *result) To pass a MYSQL* argument instead, use unsigned int mysql_field_count(MYSQL *mysql). You can get the number of columns either from a pointer to a result set or to a connection handler. You would use ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-execute.html
int mysql_stmt_execute(MYSQL_STMT *stmt) Description mysql_stmt_execute() executes the prepared query associated with the statement handler. The currently bound parameter marker values are sent to server during this call, and the server replaces ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-fetch.html
int mysql_stmt_fetch(MYSQL_STMT *stmt) Description mysql_stmt_fetch() returns the next row in the result set. It can be called only while the result set exists; that is, after a call to mysql_stmt_execute() for a statement such as SELECT that ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-use-result.html
The C API gives the error Commands out of sync; you can't run this command now if you forget to do this! You may not use mysql_data_seek(), mysql_row_seek(), mysql_row_tell(), mysql_num_rows(), or mysql_affected_rows() with a result returned from ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-26.html
Version 8.0.26 is the latest General Availability release of the 8.0 series of MySQL Connector/J. It is suitable for use with MySQL Server versions 8.0, 5.7, and 5.6. It supports the Java Database Connectivity (JDBC) 4.2 API, and implements the X ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-9.html
Users can still set useInformationSchema to false; but for MySQL 8.0.3 and later, some data dictionary queries might then fail, due to deprecations of older data dictionary features. Version 8.0.9 Release Candidate is the first release candidate of ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-explanations-ml-explain-table.html
mysql> SELECT * FROM table_name LIMIT N; The following example queries the top three rows of the output table. mysql> SELECT * FROM table_name LIMIT N; The following example queries the top three rows of the output table. ML_EXPLAIN_TABLE explains ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-model-sharing.html
This topic describes how to grant other users access to a model you create. Before You Begin Share Your Models Export the Model to Share Set Up Other User with Required Privileges Importing Shared Model Run AutoML Routines on Imported Model What's ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-training-a-recommendation-model.html
mysql> SHOW TABLES FROM ML_SCHEMA_user1; +---------------------------+ | Tables_in_ML_SCHEMA_admin | +---------------------------+ | 3e094aa4ba_interactions | | 3e094aa4ba_items | | 3e094aa4ba_users | | MODEL_CATALOG | | MODEL_CATALOG_BACKUP_v3 | | ... After preparing the data for a recommendation model, you can train the ...
Displaying 781 to 790 of 1830 total results