Search Results
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-reference-datatypes.html
The following table illustrates how Connector/ODBC maps the server data types to default SQL and C data types.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-refresh.html
Syntax: ccnx.refresh(flags) Flushes or resets the tables and caches indicated by the argument. Raises a TypeError exception if the first argument is not an integer.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-shutdown.html
The only argument currently permitted is an integer that describes the shutdown type. Raises a TypeError exception if the first argument is not an integer. Raises a MySQLErrorInterface exception if an error is retured by the MySQL server.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-client-flags.html
Syntax: >>> cnx.client_flags=flags >>> cnx.clieng_flags This property sets the client flags to use when connecting to the MySQL server, and returns the set value as an integer. The flags value can be either an integer or a sequence of valid client ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-set-client-flags.html
Syntax: cnx.set_client_flags(flags) This method sets the client flags to use when connecting to the MySQL server, and returns the new value as an integer. The flags argument can be either an integer or a sequence of valid client flag values (see ...
https://dev.mysql.com/doc/connector-python/en/connector-python-connectargs.html
A connection with the MySQL server can be established using either the mysql.connector.connect() function or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...
https://dev.mysql.com/doc/internals/en/capability-flags.html
The capability flags are used by the client and server to indicate which features they support and want to use. Value 0x00000001 CLIENT_FOUND_ROWS Send found rows instead of affected rows in EOF_Packet. CLIENT_CONNECT_WITH_DB Database (schema) name ...
https://dev.mysql.com/doc/internals/en/strings-directory.html
Many of the files in this subdirectory are equivalent to well-known functions that appear in most C string libraries. On the other hand, some of the files are MySQL additions or improvements. Often the MySQL changes are attempts to optimize the ...
https://dev.mysql.com/doc/internals/en/tuning-trace-purging.html
This is done with SET optimizer_trace_offset=<OFFSET>, optimizer_trace_limit=<LIMIT> where OFFSET is a signed integer, and LIMIT is a positive integer. The default for optimizer_trace_offset is -1; the default for optimizer_trace_limit is 1. The ...
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-sessionfactory.html
Actual connections to the database are managed in a global connection pool, and may be shared by several session factories; each connection will be closed when the last session factory using it is closed. 4.3.1.23.3 currentState() public abstract ...