Search Results
                    
                    
            https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-errorcodes.html
                                 The following tables lists the error codes returned by Connector/ODBC apart from the server errors. 
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-ado.html
                                 When you are coding with the ADO API and Connector/ODBC, you need to pay attention to some default properties that aren't supported by the MySQL server. For example, using the CursorLocation Property as adUseServer returns a result of −1 for the ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-vb-asp.html
                                 Some articles that may help with Visual Basic and ASP: MySQL BLOB columns and Visual Basic 6 by Mike Hillyer (<mike@openwin.org>). How to map Visual basic data type to MySQL types by Mike Hillyer (<mike@openwin.org>). 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors-notsupportederror.html
                                 This exception is raised when some feature was used that is not supported by the version of MySQL that returned the error. It is also raised when using functions or statements that are not supported by stored routines. 
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-errors.html
                                 The mysql.connector.errors module defines exception classes for errors and warnings raised by MySQL Connector/Python. Most classes defined in this module are available when you import mysql.connector. The exception classes defined in this module ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-cmd-reset-connection.html
                                 Syntax: cnx.cmd_reset_connection() Resets the connection by sending a COM_RESET_CONNECTION command to the server to clear the session state. This method permits the session state to be cleared without reauthenticating. For MySQL servers older than ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-get-row.html
                                 This method retrieves the next row of a query result set, returning a tuple. The tuple returned by get_row() consists of: The row as a tuple containing byte objects, or None when no more rows are available. EOF packet information as a dictionary ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-reset-session.html
                                 Syntax: cnx.reset_session(user_variables = None, session_variables = None) Resets the connection by reauthenticating to clear the session state. user_variables, if given, is a dictionary of user variable names and values. session_variables, if ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorbuffered.html
                                After executing a query, a MySQLCursorBuffered cursor fetches the entire result set from the server and buffers the rows. For queries executed using a buffered cursor, row-fetching methods such as fetchone() return rows from the set of buffered rows. For nonbuffered cursors, rows are not fetched from the server until a row-fetching method is ...
                                            
                https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursorraw.html
                                A MySQLCursorRaw cursor skips the conversion from MySQL data types to Python types when fetching rows. A raw cursor is usually used to get better performance or when you want to do the conversion yourself. To create a raw cursor, use the raw ...