Search Results
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-num-rows.html
Syntax: count = ccnx.num_rows() Returns the number of rows in the active result set.
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-reset-connection.html
Syntax: ccnx.reset_connection() Resets the user variables and session variables for a connection session.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-rollback.html
Syntax: ccnx.rollback() Rolls back the current transaction. Raises a MySQLInterfaceError exception on errors. ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-set-character-set.html
Syntax: ccnx.set_character_set(charset_name) Sets the default character set for the current session. The only argument permitted is a string that contains the character set name. Raises a TypeError exception if the argument is not a PyString_type.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-thread-id.html
Syntax: thread_id = ccnx.thread_id() Returns the current thread or connection ID.
https://dev.mysql.com/doc/connector-python/en/connector-python-api-cext-warning-count.html
Syntax: count = ccnx.warning_count() Returns the number of errors, warnings, and notes produced by the previous SQL statement.
https://dev.mysql.com/doc/internals/en/autotools-configure-support.html
As shorthand, GROUP is a configuration group name such as none (select no plugins), all (select all plugins), or max (select all plugins used in a mysqld-max server). configure --help shows the following information pertaining to plugins: The ...
https://dev.mysql.com/doc/internals/en/cmake-variables-controlling-plugin-building.html
To build a plugin that is statically compiled into the server (assuming that the plugin supports static build), add -DWITH_<PLUGIN>=1 to the CMake command line. To exclude a plugin from the build, use -DWITHOUT_<PLUGIN>=1 If neither WITH_<PLUGIN> ...
https://dev.mysql.com/doc/internals/en/join-buffer-size.html
Basic information about the join buffer cache: The size of each join buffer is determined by the value of the join_buffer_size system variable. This buffer is used only when the join is of type ALL or index (in other words, when no possible keys ...