Search Results
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-backup-osb.html
Tape drives are affordable, high-capacity storage devices for backup data. MySQL Enterprise Backup can interface with media management software (MMS) such as Oracle Secure Backup (OSB) to drive MySQL backup and restore jobs. The media management ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-interface-usage.html
CREATE DATABASE db; USE db; CREATE TABLE test_table (id INT NOT NULL); INSERT INTO test_table VALUES (10), (20), (30); CREATE USER 'testuser'@'localhost' IDENTIFIED BY 'testpass'; GRANT ALL ON db.* TO 'testuser'@'localhost'; Create a file named ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-data-structures.html
file_name The name of the binary log file to read: If file_name is NULL, the client library sets it to the empty string and sets file_name_length to 0. If file_name is not NULL, file_name_length must either be the length of the name or 0. If ... C ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-options.html
The argument is a pointer to a null-terminated string naming the key. Interpretation of the MYSQL_OPT_LOAD_DATA_LOCAL_DIR value is as follows: If the value is the null pointer (the default), it names no directory, with the result that no files are ... int mysql_options(MYSQL *mysql, enum mysql_option option, const void *arg) Description Can be used to set extra connect options and affect behavior for a ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/client-plugin-descriptors.html
init: A once-only initialization function, or NULL if there is no such function. Any message returned by the init function must be null-terminated, so the maximum message length is the buffer length minus one. deinit: A once-only deinitialization ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/using-own-protocol-trace-plugins.html
Function members for which the plugin needs no processing can be declared as NULL in the descriptor, in which case you need not write any corresponding function. trace_stop() is passed the connection handler and a pointer to the memory allocated by ... Note To use your own protocol trace plugins, you must configure MySQL with the WITH_TEST_TRACE_PLUGIN CMake option disabled because only one protocol trace plugin can be loaded at a time and an error occurs for attempts to load a second ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-model-sharing.html
For example: mysql> CALL sys.ML_MODEL_IMPORT(NULL, JSON_OBJECT('schema', 'ML_SCHEMA_admin', 'table', 'model_export'), @bank_export); NULL means that a model from a table is imported, and not a model object. mysql> CALL ... This topic describes how ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-aml-using-a-recommendation-model-ratings-rankings.html
For the option to set the user name, you can set it to NULL. mysql> CALL sys.ML_MODEL_LOAD(@model, NULL); The following example uses the model handle. mysql> CALL sys.ML_MODEL_LOAD('recommendation_use_case', NULL); Make predictions for the test ...
https://dev.mysql.com/doc/mysql-ai/9.4/en/mys-ai-genai-vector-store-load.html
This section describes how to generate vector embeddings for files or folders stored in , and load the embeddings into a vector store table. The following sections in this topic describe how to ingest files into a vector store: Before You Begin ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-statements.html
Statement objects allow you to execute basic SQL queries and retrieve the results through the ResultSet class, which is described later. To create a Statement instance, you call the createStatement() method on the Connection object you have ...