Search Results
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-user-accounts.html
To have passwords automatically expire after a specified number of days, add an entry similar to this under the [mysqld] option group in the MySQL configuration file (/etc/my.cnf): default_password_lifetime=120 A setting of 120 means that the ...It ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/parameter-binding.html
Parameter Type Syntax Example Allowed in CRUD operations Allowed in SQL strings Anonymous ? 'age > ?' no yes Named :<name> 'age > :age' yes no The following example shows how to use the bind() function before an execute() function. Instead of using ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/parameter-binding.html
Parameter Type Syntax Example Allowed in CRUD operations Allowed in SQL strings Anonymous ? 'age > ?' no yes Named :<name> 'age > :age' yes no The following example shows how to use the bind() function before an execute() function. Instead of using ...
https://dev.mysql.com/doc/internals/en/error-flags.html
The following flags can be examined or set to alter the behavior during error handling: thd->net.report_error thd->net.report_error is set in my_message_sql() if the error message was registered. thd->query_error Like net.report_error, but is ...
https://dev.mysql.com/doc/internals/en/threads.html
Threads in mysqld can run at four different priorities, defined in mysql_priv.h: #define INTERRUPT_PRIOR 10 #define CONNECT_PRIOR 9 #define WAIT_PRIOR 8 #define QUERY_PRIOR 6 Some threads try to set their priority; others don't. The ...These calls ...
https://dev.mysql.com/doc/workbench/en/wb-tutorial-plugins-myisam-fk.html
MySQL Workbench provides facilities for reverse engineering existing databases, and then creating an EER Diagram automatically. from wb import * import grt ModuleInfo = DefineModule(name="AutoFK", author="John Doe", version="1.0") ...They are often ...
https://dev.mysql.com/doc/connectors/en/connector-net-medium-trust-gac.html
After installing the library, make the following configuration changes: In the SecurityClasses section, add a definition for the MySqlClientPermission class, including the version to use. <SecurityClass Name="MySqlClientPermission" ... If the ...
https://dev.mysql.com/doc/connector-net/en/connector-net-medium-trust-gac.html
After installing the library, make the following configuration changes: In the SecurityClasses section, add a definition for the MySqlClientPermission class, including the version to use. <SecurityClass Name="MySqlClientPermission" ... If the ...
https://dev.mysql.com/doc/internals/en/innodb-page-header.html
The PAGE_FREE pointer in the page header points to the first record in the list. The "next" pointer in the record header (specifically, in the record's Extra Bytes) points to the next record in the list. PAGE_DIRECTION and PAGE_N_DIRECTION: It's ...
https://dev.mysql.com/doc/internals/en/transactions-roles-responsibilities.html
The server has only one way to know that an engine participates in the statement and a transaction has been started in an engine: the engine says so. So, in order to be a part of a transaction, an engine must "register" itself. Although ...