Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-web-personalization-provider.html
This tutorial demonstrates how to configure the web parts personalization provider using Connector/NET. For information about doing this, see Section 6.2.1, “Tutorial: Connector/NET ASP.NET Membership and Role Provider”. MySQL Connector/NET ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-examples-overview.html
This might include: allocate environment handle, set ODBC version, allocate connection handle, connect to MySQL Server, and set optional connection attributes. This might include: allocate statement handle and set optional statement attributes. This ... Interacting with a MySQL server from an applications using the Connector/ODBC typically involves the following operations: Configure the Connector/ODBC ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-access.html
You can fix this by selecting "Query|SQLSpecific|Pass-Through" from the Access menu. If you have in Access a column defined as BYTE, Access tries to export this as TINYINT instead of TINYINT UNSIGNED. This gives you problems if you have values ...
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-usagenotes-apptips-microsoft-excel.html
If you have problems importing data into Microsoft Excel, particularly numeric, date, and time values, this is probably because of a bug in Excel, where the column type of the source data is used to determine the data type when that data is ...The ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnectionpool-constructor.html
Syntax: MySQLConnectionPool(pool_name=None, pool_size=5, pool_reset_session=True, **kwargs) This constructor instantiates an object that manages a connection pool. If this argument is not given, Connector/Python automatically generates the name, ...
https://dev.mysql.com/doc/internals/en/caching.html
(mysys/mf_keycash.c) Record Cache This is used for quick scanning of all records in a table. (mysys/mf_iocash.c and isam/_cash.c) Table Cache This holds the most recently used tables. (This is a very quick in-memory table with hash index.) Join ...
https://dev.mysql.com/doc/internals/en/dbug-sleep.html
open_tables(...) DBUG_EXECUTE_IF("sleep_open_and_lock_after_open", { const char *old_proc_info= thd->proc_info; thd->proc_info= "DBUG sleep"; my_sleep(6000000); thd->proc_info= old_proc_info;}); lock_tables(...) In this case, if the 'debug' keyword ... In cases where the normal server code does not have a block point at the critical place, one can insert an artificial synchronization ...
https://dev.mysql.com/doc/internals/en/debug-configurations.html
Using Makefiles, a debug build is done with -DCMAKE_BUILD_TYPE=Debug (an alias for this is -DWITH_DEBUG=1). This includes DBUG instrumentation, plus wrappers around pthread mutexes known as SAFE_MUTEX on Unix systems. Combine this with WITH_DEBUG ...If Visual Studio or Xcode generators are used (you invoked cmake with -G "Visual Studio ..." or -G Xcode), switching to release or debug configuration is done within the IDE, or at the build time using command line ...
https://dev.mysql.com/doc/internals/en/determining-binary-log-version.html
Given any binary log file, the information in this section describes how to determine the format in which it is written. (See Exceptional Condition 1 later in this section.) 4) If the type code is START_EVENT_V3 (1), check the event length. This ...
https://dev.mysql.com/doc/internals/en/external-lock.html
Synopsis virtual int external_lock ( thd, lock_type); THD * thd ; int lock_type ; Description This is the external_lock method. The locking methods for mysql section in lock.cc has additional comments on this topic that may be useful to read. If you ...