Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-reset-connection.html
Syntax: ccnx.reset_connection() Resets the user variables and session variables for a connection session.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-constructor.html
pool_reset_session: Whether to reset session variables when the connection is returned to the pool. Syntax: MySQLConnectionPool(pool_name=None, pool_size=5, pool_reset_session=True, **kwargs) This constructor instantiates an object that manages a ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-execute.html
The parameters found in the tuple or dictionary params are bound to the variables in the operation. Specify variables using %s or %(name)s parameter style (that is, using format or pyformat style). Syntax: cursor.execute(operation, params=None) ...
https://dev.mysql.com/doc/internals/en/header-of-scripts.html
For each test or auxiliary script, create a header that contains the following information: Purpose of the test or script Corresponding WL task, if there is any Creator of the test and date of creation Author of last significant change + date of ...
https://dev.mysql.com/doc/internals/en/innodb-page-header.html
PAGE_BTR_SEG_LEAF and PAGE_BTR_SEG_TOP: These variables contain information (space ID, page number, and byte offset) about index node file segments. There are two different variables because InnoDB allocates separately for leaf pages and upper-level ...The PAGE_FREE pointer in the page header points to the first record in the ...
https://dev.mysql.com/doc/internals/en/running-mysql-test-run-visual-studio.html
If you build with Xcode and you build more than a single configuration (for example, Debug and RelWithDebInfo), set the MTR_VS_CONFIG=cmake_configuration_name environment variable to run tests for a specific configuration. The name of the variable ...To run a debug configuration, change locaton to the mysql-test directory under your build directory and run mysql-test-run.pl: Mac OS X cd mysql-test MTR_VS_CONFIG=Debug perl mysql-test-run.pl options Windows cd mysql-test set MTR_VS_CONFIG=Debug perl mysql-test-run.pl ...
https://dev.mysql.com/doc/internals/en/sql-directory.html
Programs for handling SQL commands. The "core" of MySQL. These are the .c and .cc files in the sql directory: derror.cc --- read language-dependent message file des_key_file.cc --- load DES keys from plaintext file discover.cc --- Functions for ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-summarize-docs.html
Generate Summary for a Single File Perform the following steps: Copy the text segment of the file from the vector store table to the @document variable: mysql> SELECT segment INTO @document FROM DBName.VectorStoreTableName WHERE document_id=0; ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-genai-update-vector-store.html
To specify vector store table to update, set the @dl_tables variable: mysql> SET @dl_tables = '[ { "db_name": "DBName", "tables": [ { "table_name": "VectorStoreTableName" }] } ]'; Replace the following: DBName: the name of database that contains the ... To keep up with the changes and updates in the documents in your Object Storage, you must update the vector embeddings loaded in the vector store table on a regular ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-lakehouse-auto-loading-data-par.html
These examples use an input_list variable to set up the creation of the external table and the files to load the table. SET @input_list creates a session variable that stores all the parameters for creating the external file and loading the table ...