https://dev.mysql.com/windows-start-service.html
Place your cursor at the end of the text appearing in the space marked Variable Value. On Windows, the recommended way to run MySQL is to install it as a Windows service, so that MySQL starts and stops automatically when Windows starts and stops. A ...
https://dev.mysql.com/writing-audit-plugins.html
release_thd: A function that the server calls to inform the plugin that it is being dissociated from its thread context. They are called within the context of a specific thread, and a thread might perform an activity that produces several event ...
https://dev.mysql.com/adding-character-set.html
The syntax for the file is very simple: Comments are written as ordinary XML comments (<!-- text -->). This section discusses the procedure for adding a character set to MySQL. The proper procedure depends on whether the character set is simple or ...
https://dev.mysql.com/adding-udf.html
By default, the name of a UDF argument is the text of the expression used to specify the argument. For the UDF mechanism to work, functions must be written in C++ and your operating system must support dynamic loading. MySQL source distributions ...
https://dev.mysql.com/archive-storage-engine.html
The ARCHIVE storage engine produces special-purpose tables that store large amounts of unindexed data in a very small footprint. To enable this storage engine if you build MySQL from source, invoke CMake with the -DWITH_ARCHIVE_STORAGE_ENGINE ...
https://dev.mysql.com/audit-log-security.html
By default, contents of audit log files produced by the audit log plugin are not encrypted and may contain sensitive information, such as the text of SQL statements. For security reasons, audit log files should be written to a directory accessible ...
https://dev.mysql.com/batch-mode.html
filename See Section 4.5.1.5, “Executing SQL Statements from a Text File”, for more information. In the previous sections, you used mysql interactively to enter statements and view the results. If you want the script to continue even if some of ...
https://dev.mysql.com/binary-log.html
Passwords in statements written to the binary log are rewritten by the server not to occur literally in plain text. The binary log contains “events” that describe database changes such as table creation operations or changes to table data. It ...
https://dev.mysql.com/c-api-prepared-statement-function-overview.html
You can send text or binary data in chunks to server using mysql_stmt_send_long_data(). The following list summarizes the functions available for prepared statement processing. For greater detail, see the descriptions in Section 28.6.10, “C API ...
https://dev.mysql.com/c-api-prepared-statement-type-conversions.html
This enables you to distinguish BINARY from CHAR, VARBINARY from VARCHAR, and the BLOB types from the TEXT types. Prepared statements transmit data between the client and server using C language variables on the client side that correspond to SQL ...