Search



Search Results
Displaying 3101 to 3110 of 3514 total results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-add-connection.html
If this argument is missing, the pool creates a new connection and adds it. Syntax: cnxpool.add_connection(cnx = None) This method adds a new or existing MySQLConnection to the pool, or raises a PoolError if the pool is full. Arguments: cnx: The ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlcursor-column-names.html
Syntax: sequence = cursor.column_names This read-only property returns the column names of a result set as sequence of Unicode strings.
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-versions.html
Python terminology regarding distributions: Built Distribution: A package created in the native packaging format intended for a given platform. This section describes both version releases, such as 8.0.34, along with notes specific to the two ...
https://dev.mysql.com/doc/connector-python/en/differences-between-binary-and-source-distribution.html
Note Creating a wheel package from an sdist may fail for some older Python version, as the Connector/Python source code is only compatible with a specific subset of Python versions. Installing from a wheel (bdist package) is the recommended, except ...
https://dev.mysql.com/doc/internals/en/additional-accessors-for-plugins.html
Starting with MySQL 5.1.21 the following additional accessors are made available to all plug-ins: Full definition of MYSQL_LEX_STRING (identical to LEX_STRING from m_string.h) Full definition of MYSQL_XID (binary compatible with XID from handler.h) ...
https://dev.mysql.com/doc/internals/en/binlog-version.html
Depending on the MySQL Version that created the binlog the format is slightly different.
https://dev.mysql.com/doc/internals/en/building-with-cmake.html
Command-line build with CMake 2.8 After creating the project with cmake as just indicated, issue this command: cmake --build . Unix make By default, a cmake build is less verbose than an Autotools build. To see what commands are executed during the ...
https://dev.mysql.com/doc/internals/en/charsets.html
Character sets are used by MySQL when storing information, both to ensure that the information is stored (and returned) in the correct format, but also for the purposes of collation and sorting. Each character set supports one or more collations, ...
https://dev.mysql.com/doc/internals/en/class-procedure-change-columns.html
An example that adds an INTEGER field at the end of the field list: bool proc_rownum::change_columns(List<Item> &field_list) { DBUG_ENTER("proc_rownum::change_columns"); // create a new column item row_num_column = new Item_proc_int("RowNum"); // ...
Displaying 3101 to 3110 of 3514 total results