Search Results
                    
                    
            https://dev.mysql.com/doc/connector-net/en/connector-net-ref.html
                                 This chapter provides a high-level reference to the ADO.NET and .NET Core components that are implemented in the most recent version of Connector/NET. For a complete API listing, visit MySQL Documentation to locate the Connector/NET 8.0 API ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-driver-manager.html
                                 An ODBC Driver Manager is a library that manages communication between the ODBC-aware application and any drivers. Most ODBC Driver Manager implementations also include an administration application that makes the configuration of DSN and drivers ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-functionality.html
                                 This section provides help with common queries and areas of functionality in MySQL and how to use them with Connector/ODBC. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-character-set-name.html
                                 Syntax: charset = ccnx.character_set_name() Returns the name of the default character set for the current MySQL session. When this is the case, a name usable by Python is returned. For example, the 'utf8mb4' MySQL character set name is returned as ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-convert-to-mysql.html
                                ccnx.query('SELECT CURRENT_USER(), 1 + 3, NOW()') row = ccnx.fetch_row() for col in row: print(ccnx.convert_to_mysql(col)) ccnx.consume_result() Raises a MySQLInterfaceError exception if the Python object cannot be converted.  Syntax: converted_obj ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-field-count.html
                                 Syntax: count = ccnx.field_count() Returns the number of columns in the active result set. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-num-fields.html
                                 Syntax: count = ccnx.num_fields() Returns the number of columns in the active result set. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-num-rows.html
                                 Syntax: count = ccnx.num_rows() Returns the number of rows in the active result set. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-can-consume-results.html
                                 This property indicates the value of the consume_results connection parameter that controls whether result sets produced by queries are automatically read and discarded. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-unread-results.html
                                It is set to False if there is not an unread result, otherwise True. This is used by cursors to check whether another cursor still needs to retrieve its result set. Do not set the value of this property, as only the connector should change the value.