Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-multi.html
with cnx.cursor() as cur: # Execute SQL; it can contain one or multiple statements cur.execute(sql_operation, map_results=True) # Fetch result set, see other examples for additional information A MySQL multi statement or script is composed of one or ... Connector/Python can execute either a single or multiple statements, this section references multiple statement and associated delimiter ...
https://dev.mysql.com/doc/connector-python/en/connector-python-example-ddl.html
All DDL (Data Definition Language) statements are executed using a handle structure known as a cursor. cnx = mysql.connector.connect(user='scott') cursor = cnx.cursor() A single MySQL server can manage multiple databases. The following examples ...
https://dev.mysql.com/doc/connector-python/en/connector-python-multi.html
with cnx.cursor() as cur: # Execute SQL; it can contain one or multiple statements cur.execute(sql_operation, map_results=True) # Fetch result set, see other examples for additional information A MySQL multi statement or script is composed of one or ... Connector/Python can execute either a single or multiple statements, this section references multiple statement and associated delimiter ...
https://dev.mysql.com/doc/c-api/8.4/en/mysql-stmt-attr-set.html
STMT_ATTR_CURSOR_TYPE unsigned long * Type of cursor to open for statement when mysql_stmt_execute() is invoked. STMT_ATTR_PREFETCH_ROWS unsigned long * Number of rows to fetch from server at a time when using a cursor. If you use the ... bool ...
https://dev.mysql.com/doc/refman/8.4/en/glossary.html
cursor An internal MySQL data structure that represents the result set of an SQL statement. Although SQL usually handles the processing of cursors for you, you might delve into the inner workings when dealing with performance-critical code. dynamic ... These terms are commonly used in information about the MySQL database ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-fieldtype.html
The field type is stored with every cursor in the description for each column. This class provides all supported MySQL field or data types. They can be useful when dealing with raw data or defining your own converters. The following example shows ...
https://dev.mysql.com/doc/connectors/en/connector-python-connectargs.html
buffered False Whether cursor objects fetch the results immediately after executing queries. It is also possible to set this per cursor (see Section 6.9.2.6, “MySQLConnection.cursor() Method”). A connection with the MySQL server can be ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-fieldtype.html
The field type is stored with every cursor in the description for each column. This class provides all supported MySQL field or data types. They can be useful when dealing with raw data or defining your own converters. The following example shows ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
buffered False Whether cursor objects fetch the results immediately after executing queries. It is also possible to set this per cursor (see Section 10.2.6, “MySQLConnection.cursor() Method”). A connection with the MySQL server can be ...
https://dev.mysql.com/doc/internals/en/files-in-innodb-sources.html
\read (READ) File Name What Name Stands For Size Comment Inside File --------- -------------------- ------ ------------------- read0read.c Read / Read 9,935 Cursor read The read0read.c program opens a "read view" of a query result, using some ...