Search Results
https://dev.mysql.com/doc/refman/8.4/en/view-updatability.html
Some views are updatable and references to them can be used to specify tables to be updated in data change statements. That is, you can use them in statements such as UPDATE, DELETE, or INSERT to update the contents of the underlying table. Derived ...
https://dev.mysql.com/doc/refman/8.4/en/with.html
A common table expression (CTE) is a named temporary result set that exists within the scope of a single statement and that can be referred to later within that statement, possibly multiple times. The following discussion describes how to write ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-issues-mysql-cluster.html
This section describes limitations relating to MySQL NDB Cluster functionality that is unsupported or curtailed by MySQL Cluster Manager 8.4. MySQL Cluster Manager currently does not provide any explicit support for MySQL NDB Cluster Replication.
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-issues-mysql-server.html
The limitations described in this section relate to functionality in the MySQL Server that is unsupported or reduced, or otherwise differs when using it with MySQL Cluster Manager. That means MySQL Cluster Manager might have mysqld started ...See ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-data-structures.html
This section describes data structures specific to asynchronous C API functions. For information about general-purpose C API data structures, see Section 5.2, “C API Basic Data Structures”. The value may be one of the CONNECT_STAGE_ symbols ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-auto-reconnect.html
The related MYSQL_OPT_RECONNECT option is still available but now returns a deprecation warning to the standard error output if your application calls the mysql_get_option() or mysql_options() function with the option, even when setting it to false.
https://dev.mysql.com/doc/c-api/8.4/en/c-api-basic-interface.html
For the most part, this interface comprises the original set of C API data structures and functions to handle client/server interaction, before others were invented for more specialized purposes (such as prepared-statement handling). Other chapters ... This chapter describes the set of MySQL C API “basic” ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-binary-log-interface-usage.html
The following simple example program demonstrates the binary log C API functions. Program notes: mysql is assumed to be a valid connection handler. The initial SET statement sets the @source_binlog_checksum user-defined variable that the server ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-example-programs.html
For information about individual C API functions, the sections for most functions include usage examples. Many of the clients in MySQL source distributions are written in C, such as mysql, mysqladmin, and mysqlshow. If you are looking for examples ...
https://dev.mysql.com/doc/c-api/8.4/en/c-api-prepared-statement-interface.html
This capability uses the MYSQL_STMT statement handler data structure returned by the mysql_stmt_init() initialization function. Then it is executed one or more times at a later time, using the statement handler returned by the initialization ... The ...