Search Results
                    
                    
            https://dev.mysql.com/doc/connector-python/en/connector-python-api-pooledmysqlconnection-pool-name.html
                                 Syntax: cnx.pool_name This property returns the name of the connection pool to which the connection belongs. 
                                            
                https://dev.mysql.com/doc/internals/en/algorithms.html
                                 MySQL uses many different algorithms and structures. This chapter tries to describe some of them. ...
                                            
                https://dev.mysql.com/doc/internals/en/append-block-event.html
                                 Binlog::APPEND_BLOCK_EVENT: append block-data to file Payload 4 file_id string.EOF block-data . 
                                            
                https://dev.mysql.com/doc/internals/en/array.html
                                 This section is yet to be written. ...
                                            
                https://dev.mysql.com/doc/internals/en/autotools-to-cmake.html
                                 This section shows some common GNU Autotools configuration options and how they map to CMake equivalents. 
                                            
                https://dev.mysql.com/doc/internals/en/avoid-too-dense-code.html
                                 except you intend to check the parser or the performance of the reader of the code ;-). Unfortunate example: select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2; Improved example: SELECT 1 + 1, 1 - 1, 1 + 1 * 2, 8 / 5, 8 % 5, MOD(8,5), ...
                                            
                https://dev.mysql.com/doc/internals/en/class-procedure-end-of-records.html
                                 Prototype: virtual bool end_of_records(void); This member function is called at the very end after all result rows have been processed with calls to Section 18.1.3, “send_row()”. This is where you can send extra summary result rows as, for ...
                                            
                https://dev.mysql.com/doc/internals/en/com-field-list-response.html
                                00 00 00 00 fb 05 00 00 02 fe 00 00 02 00 .............. 
                                            
                https://dev.mysql.com/doc/internals/en/com-quit.html
                                 COM_QUIT: tells the server that the client wants to close the connection response: either a connection close or a OK_Packet Payload 1 [01] COM_QUIT Fields command (1) -- 0x01 COM_QUIT Example 01 00 00 00 01 . 
                                            
                https://dev.mysql.com/doc/internals/en/com-stmt-close.html
                                 COM_STMT_CLOSE deallocates a prepared statement No response is sent back to the client. COM_STMT_CLOSE: COM_STMT_CLOSE direction: client -> server response: none payload: 1 [19] COM_STMT_CLOSE 4 statement-id example: 05 00 00 00 19 01 00 00 00 ...