Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-functionality-dynamic-cursor.html
Support for the dynamic cursor is provided in Connector/ODBC 3.51, but dynamic cursors are not enabled by default. You can enable this function within Windows by selecting the Enable Dynamic Cursor check box within the ODBC Data Source ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-cursor-subclasses.html
The cursor classes described in the following sections inherit from the MySQLCursor class, which is described in Section 6.9.5, “cursor.MySQLCursor Class”.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cursor-subclasses.html
The cursor classes described in the following sections inherit from the MySQLCursor class, which is described in Section 10.5, “cursor.MySQLCursor Class”.
https://dev.mysql.com/doc/connectors/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 ...In this case, you must be sure to fetch all rows of the result set before executing any other ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-transaction.html
Inserting or updating data is also done using the handler structure known as a cursor. We then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method. The query to insert the new employee is executed and we ...
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 ...In this case, you must be sure to fetch all rows of the result set before executing any other ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-transaction.html
Inserting or updating data is also done using the handler structure known as a cursor. We then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method. The query to insert the new employee is executed and we ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-cursor-select.html
The following example shows how to query data using a cursor created using the connection's cursor() method. We then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method. In this example, we use the cursor ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-select.html
The following example shows how to query data using a cursor created using the connection's cursor() method. We then create a new cursor, by default a MySQLCursor object, using the connection's cursor() method. In this example, we use the cursor ...
https://dev.mysql.com/doc/connectors/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 ...