Search



Search Results
Displaying 1081 to 1090 of 2661 total results
https://dev.mysql.com/doc/refman/8.4/en/version-tokens-elements.html
Version Tokens is based on a plugin library that implements these elements: A server-side plugin named version_tokens holds the list of version tokens associated with the server and subscribes to notifications for statement execution events. The ...
https://dev.mysql.com/doc/refman/8.4/en/view-syntax.html
The CREATE VIEW statement creates a new view (see Section 15.1.23, “CREATE VIEW Statement”). To alter the definition of a view or drop a view, use ALTER VIEW (see Section 15.1.11, “ALTER VIEW Statement”), or DROP VIEW (see Section 15.1.35, ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/meb-enterprise-firewall.html
MySQL Enterprise Edition includes MySQL Enterprise Firewall, an application-level firewall that enables database server administrators to permit or deny SQL statement execution based on matching against allowlists of accepted statement patterns.
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-using-backup-restore-missing.html
REORGANIZE PARTITION statement in the mysql client for each NDB table in the cluster. It is possible using MySQL Cluster Manager to perform a partial restore of a MySQL NDB Cluster—that is, to restore from a backup in which backup images from one ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-auto-reconnect.html
The MySQL client library can perform an automatic reconnection to the server if it finds that the connection is down when you attempt to send a statement to the server to be executed. If auto-reconnect is enabled, the library tries once to ...The ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-more-results.html
bool mysql_more_results(MYSQL *mysql) Description This function is used when you execute multiple statements specified as a single statement string, or when you execute CALL statements, which can return multiple result sets. mysql_more_results() ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-real-escape-string-quote.html
unsigned long mysql_real_escape_string_quote(MYSQL *mysql, char *to, const char *from, unsigned long length, char quote) Description This function creates a legal SQL string for use in an SQL statement. The mysql argument must be a valid, open ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-fetch.html
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 produces a result set. int mysql_stmt_fetch(MYSQL_STMT *stmt) Description mysql_stmt_fetch() returns the next row ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-store-result.html
int mysql_stmt_store_result(MYSQL_STMT *stmt) Description Result sets are produced by calling mysql_stmt_execute() to executed prepared statements for SQL statements such as SELECT, SHOW, DESCRIBE, and EXPLAIN. By default, result sets for ...To ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-password-validation-plugins.html
To register the plugin at runtime, use this statement, adjusting the .so suffix for your platform as necessary: INSTALL PLUGIN validate_password SONAME 'validate_password.so'; For additional information about plugin loading, see Installing and ...
Displaying 1081 to 1090 of 2661 total results