Search Results
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-genai-summarize-content.html
It involves developing algorithms and statistical models to make predictions or decisions without explicit programming. The following sections in this topic describe how to summarize exiting content using the GenAI: Before You Begin Summarizing ...
https://dev.mysql.com/doc/workbench/en/wb-getting-started-tutorial-create-connection.html
Check its status, MySQL logs, and measure its performance statistics from the Dashboard. This tutorial adds a new connection that can be either an initial connection or an additional connection. An instance of MySQL server must be installed, ...
https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-debugging-profiling.html
logger The name of a class that implements 'com.mysql.cj.log.Log' that will be used to log messages to. Default Value com.mysql.cj.log.StandardLogger Since Version 3.1.1 profilerEventHandler Name of a class that implements the interface ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference-api.html
SQLStatistics Yes ISO 92 Returns statistics about a single table and the list of indexes associated with the table. For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-api.html
SQLStatistics Yes ISO 92 Returns statistics about a single table and the list of indexes associated with the table. For the complete ODBC API reference, please refer to the ODBC Programmer's Reference at ...
https://dev.mysql.com/doc/internals/en/creating-handlerton.html
The handlerton (short for handler singleton) defines the storage engine and contains method pointers to those methods that apply to the storage engine as a whole, as opposed to methods that work on a per-table basis. Some examples of such methods ...
https://dev.mysql.com/doc/internals/en/guided-tour-skeleton.html
There will be — we're going into list mode now and just reciting the rest of the items in the switch statement — code for prepare, close statement, query, quit, create database, drop database, dump binary log, refresh, statistics, get process ...
https://dev.mysql.com/doc/internals/en/info.html
Synopsis virtual int info ( flag); uint flag ; Description This is the info method. Currently, this table handler doesn't implement most of the fields really needed. SHOW also makes use of this data Another note, you will probably want to have the ...
https://dev.mysql.com/doc/internals/en/support-for-delete.html
The following example is from the CSV storage engine: int ha_tina::delete_row(const byte * buf) { DBUG_ENTER("ha_tina::delete_row"); statistic_increment(table->in_use->status_var.ha_delete_count, &LOCK_status); if (chain_append()) DBUG_RETURN(-1); ...For non-indexed storage engines the parameter can be ignored, but transactional storage engines may need to store the deleted data for rollback ...
https://dev.mysql.com/doc/internals/en/support-for-insert.html
*/ if (table->next_number_field && buf == table->record[0]) update_auto_increment(); return mi_write(file,buf); } Three items of note in the preceding example include the updating of table statistics for writes, the setting of the timestamp prior to ... Once you have read support in your storage engine, the next feature to implement is support for INSERT ...