Search Results
                    
                    
            https://dev.mysql.com/doc/connectors/en/connector-odbc-examples-programming-vb.html
                                 This section contains simple examples of the use of Connector/ODBC with ADO, DAO and RDO. 5.6.7.1.1 ADO: rs.addNew, rs.delete, and rs.update The following ADO (ActiveX Data Objects) example creates a table my_ado and demonstrates the use of ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-multi.html
                                 Connector/Python can execute either a single or multiple statements, this section references multiple statement and associated delimiter support. Note Before Connector/Python 9.2.0, the multi option was required to execute multiple statements. with ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tracing-mysql-custom-listeners.html
                                 To build custom listeners that work with the MySQL Connector/NET Trace Source, it is necessary to understand the key methods used, and the event data formats used. The main method involved in passing trace messages is the TraceSource.TraceEvent ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-multi.html
                                 Connector/Python can execute either a single or multiple statements, this section references multiple statement and associated delimiter support. Note Before Connector/Python 9.2.0, the multi option was required to execute multiple statements. with ...
                                            
                https://dev.mysql.com/doc/internals/en/event-flags.html
                                 Event headers for v3 format and up contain event flags in the two flag bytes at position FLAGS_OFFSET = 17. There are comments about these flags in log_event.h, in addition to the remarks in this section. Current event flags: ...
                                            
                https://dev.mysql.com/doc/internals/en/floating-point-types.html
                                 The MySQL Reference Manual has a discussion of floating-point numbers in Section 11.2 Numeric Types, including details about the storage. Let us now take up the story from where the MySQL Reference Manual leaves off. The following discussion ...
                                            
                https://dev.mysql.com/doc/internals/en/myisam-column-attributes.html
                                 Next I'll describe the physical attributes of each column in a row. The format depends entirely on the data type and the size of the column, so, for every data type, I'll give a description and an example. All the types are defined within the ...
                                            
                https://dev.mysql.com/doc/internals/en/open.html
                                Synopsis virtual int open ( name, mode, test_if_locked); const char * name ; int mode ; uint test_if_locked ; Description This is the open method. For instance when a request comes in for a select on the table (tables are not open and closed for ...
                                            
                https://dev.mysql.com/doc/internals/en/optimizer-partition-selection.html
                                 If a partitioned table is accessed in a series of index lookups (that is, using the ref, eq_ref, or ref_or_null access methods), MySQL checks to see whether it needs to make index lookups in all partitions or that it can limit access to a ...
                                            
                https://dev.mysql.com/doc/internals/en/tracing-example.html
                                The statement's execution is naturally made of "steps": "steps": [ { "join_preparation": { This is a join's preparation "select#": 1, for the first SELECT of the statement (which has only one, here). "rest_of_plan": [ { "database": "test", "table": ...