Search Results
                    
                    
            https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-document-store.html
                                 This tutorial provides instructions to get you started using MySQL as a document store with MySQL Connector/NET. Minimum Requirements MySQL Server 8.0.11 with X Protocol enabled Connector/NET 8.0.11 Visual Studio 2013/2015/2017 world_x database ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-introduction.html
                                 The MySQL Connector/ODBC is the name for the family of MySQL ODBC drivers (previously called MyODBC drivers) that provide access to a MySQL database using the industry standard Open Database Connectivity (ODBC) API. This reference covers ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-ado.html
                                For more information on the usage of execute method, refer to http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/mdmthcnnexecute.asp.  When you are coding with the ADO API and Connector/ODBC, you need to pay attention to ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-add-attribute.html
                                Example query attribute usage: # Each invocation of `add_attribute` method will add a new query attribute: cur.add_attribute("foo", 2) cur.execute("SELECT first_name, last_name FROM clients") # The query above sent attibute "foo" with value 2. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
                                 A connection with the MySQL server can be established using either the mysql.connector.connect() function or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-opentelemetry.html
                                This instrumentor provides an API and usage similar to OpenTelemetry's own MySQL package named opentelemetry-instrumentation-mysql.  MySQL Server added OpenTelemetry support in MySQL Enterprise Edition version 8.1.0, which is a commercial product. 
                                            
                https://dev.mysql.com/doc/internals/en/bas-ext.html
                                 Purpose Defines the file extensions used by the storage engine. Synopsis virtual const char ** bas_ext ( ); ; Description This is the bas_ext method. It is called to provide the MySQL server with a list of file extensions used by the storage engine. By providing a list of extensions, storage engines can in many cases omit the [custom-engine.html#custom-engine-api-reference-delete_table delete_table()] method as the MySQL server will close all references to the table and delete all files with the specified ...
                                            
                https://dev.mysql.com/doc/internals/en/close.html
                                Usage Example from the CSV engine: int ha_example::close(void) { DBUG_ENTER("ha_example::close"); DBUG_RETURN(free_share(share)); } . Synopsis virtual int close ( void); void ; Description This is the close method. A good time to free any resources ...
                                            
                https://dev.mysql.com/doc/internals/en/create.html
                                Usage Example from the CSV storage engine: int ha_tina::create(const char *name, TABLE *table_arg, HA_CREATE_INFO *create_info) { char name_buff[FN_REFLEN]; File create_file; DBUG_ENTER("ha_tina::create"); if ((create_file= ...Synopsis virtual int ...
                                            
                https://dev.mysql.com/doc/internals/en/delete-row.html
                                Synopsis virtual int delete_row ( buf); const byte * buf ; Description This is the delete_row method. buf will contain a copy of the row to be deleted. The server will call this right after the current row has been called (from either a previous ...