Search



Search Results
Displaying 461 to 470 of 1606 total results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-binary-yum.html
The MySQL Yum repository for Oracle Linux, Red Hat Enterprise Linux, CentOS, and Fedora provides Connector/ODBC RPM packages using the MySQL Yum repository. You must have the MySQL Yum repository on your system's repository list (see Adding the ...
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 ...
Displaying 461 to 470 of 1606 total results