Search Results
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-description.html
Each tuple in the list contains values as follows: (column_name, type, None, None, None, None, null_ok, column_flags) The following example shows how to interpret description tuples: import mysql.connector from mysql.connector import FieldType ...
https://dev.mysql.com/doc/connectors/en/connector-python-example-ddl.html
All DDL (Data Definition Language) statements are executed using a handle structure known as a cursor. The following examples show how to create the tables of the Employee Sample Database. In a MySQL server, tables are very long-lived objects, and ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-fieldtype.html
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 field type is stored with every cursor in the description for each column. The following example shows ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-constructor.html
If omitted, the cursor is created but its execute() method raises an exception.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-description.html
Each tuple in the list contains values as follows: (column_name, type, None, None, None, None, null_ok, column_flags) The following example shows how to interpret description tuples: import mysql.connector from mysql.connector import FieldType ...
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. The following examples show how to create the tables of the Employee Sample Database. In a MySQL server, tables are very long-lived objects, and ...
https://dev.mysql.com/doc/internals/en/files-in-innodb-sources.html
The ability to execute SQL stored procedures is an InnoDB feature, but MySQL handles stored procedures in its own way, so the eval0proc.c program is unimportant. I took it that this has little importance for the average MySQL user. The InnoDB ...
https://dev.mysql.com/doc/ndbapi/en/ndb-event.html
Important The value ED_SESSION is reserved for future use and is not yet supported in any NDB Cluster release. Important The value ED_TEMPORARY is reserved for future use and is not yet supported in any NDB Cluster release. restart Important The ...
https://dev.mysql.com/doc/x-devapi-userguide/en/database-connection-example.html
The code that is needed to connect to a MySQL document store looks a lot like the traditional MySQL connection code, but now applications can establish logical sessions to MySQL server instances running the X Plugin. Sessions are produced by the ...
https://dev.mysql.com/doc/x-devapi-userguide/en/devapi-users-working-with-relational-tables.html
The X DevAPI SQL CRUD functions allow you to work with relational tables in manners similar to using traditional SQL statements. The following code sample shows how to use the add() and select() methods of the X DevAPI SQL CRUD functions, which are ...