Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/type-conversion.html
                                 When an operator is used with operands of different types, type conversion occurs to make the operands compatible. For example, MySQL automatically converts strings to numbers as necessary, and vice versa. mysql> SELECT 1+'1'; -> 2 mysql> SELECT ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/c-api-asynchronous-interface-usage.html
                                 This section describes how to use the C API asynchronous interface. In this discussion, asynchronous and nonblocking are used as synonyms, as are synchronous and blocking. The asynchronous C API functions cover operations that might otherwise block ...
                                            
                https://dev.mysql.com/doc/c-api/8.4/en/mysql-bind-param.html
                                 bool mysql_bind_param(MYSQL *mysql, unsigned n_params, MYSQL_BIND *bind, const char **name) Description mysql_bind_param(), available as of MySQL 8.0.23, enables defining attributes that apply to the next query sent to the server. For discussion of ...
                                            
                https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-byo-embedding-tables.html
                                 GenAI lets you use tables containing your own vector embedding to run retrieval-augmented generation (RAG) with vector search. The ML_RAG and ML_RAG_TABLE routines let you specify the table column names to use as filters for finding relevant tables ...
                                            
                https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-diagnostics-report.html
                                If you intend to communicate with MySQL Enterprise Monitor support, it is strongly recommended you provide this report with your support request. Introduction To generate a diagnostic report file, select Diagnostics Report from the Help menu. The ...
                                            
                https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-7.html
                                 In addition to the new APIs introduced in MySQL Connector/C++ 8.0 (X DevAPI and X DevAPI for C), Connector/C++ now also supports the legacy API based on JDBC4. Applications written against the JDBC4-based API of Connector/C++ 1.1 can be also ...
                                            
                https://dev.mysql.com/doc/internals/en/opening-a-table.html
                                 Before any read or write operations are performed on a table, the MySQL server will call the [custom-engine.html#custom-engine-api-reference-open handler::open()] method to open the table data and index files (if they exist). int open(const char ...
                                            
                https://dev.mysql.com/doc/internals/en/starting-transaction-from-external-lock-method.html
                                 MySQL calls [custom-engine.html#custom-engine-api-reference-external_lock handler::external_lock()] for every table it is going to use at the beginning of every statement. Thus, if a table is touched for the first time, it implicitly starts a ...
                                            
                https://dev.mysql.com/doc/internals/en/support-for-update.html
                                Performing an update will depend on row format and storage implementation. Some storage engines will replace data in-place, while other implementations delete the existing row and append the new row at the end of the data file. Non-indexed storage ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/innodb-table-import.html
                                 This section describes how to import tables using the Transportable Tablespaces feature, which permits importing tables, partitioned tables, or individual table partitions that reside in file-per-table tablespaces. There are many reasons why you ...