Search Results
https://dev.mysql.com/doc/refman/8.4/en/server-options.html
When you start the mysqld server, you can specify program options using any of the methods described in Section 6.2.2, “Specifying Program Options”. The most common methods are to provide options in an option file or on the command line.
https://dev.mysql.com/doc/refman/8.4/en/type-conversion.html
When an operator is used with operands of different types, type conversion occurs to make the operands compatible. For example, MySQL automatically converts strings to numbers as necessary, and vice versa. mysql> SELECT 1+'1'; -> 2 mysql> SELECT ...
https://dev.mysql.com/doc/refman/8.4/en/user-variables.html
You can store a value in a user-defined variable in one statement and refer to it later in another statement. This enables you to pass values from one statement to another. User variables are written as @var_name, where the variable name var_name ...
https://dev.mysql.com/doc/extending-mysql/8.4/en/writing-full-text-plugins.html
MySQL supports server-side full-text parser plugins with MyISAM and InnoDB. For introductory information about full-text parser plugins, see Full-Text Parser Plugins. A full-text parser plugin can be used to replace or modify the built-in full-text ...
https://dev.mysql.com/doc/relnotes/connector-j/en/news-9-2-0.html
Version 9.2.0 is a new GA release of MySQL Connector/J. MySQL Connector/J 9.2.0 supersedes 9.1 and is recommended for use on production systems. This release can be used against MySQL Server version 8.0 and later. It supports the Java Database ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/data-type-handling.html
In general, the data type of an argument is resolved using the following criteria, in order of priority: The expected data type for the target parameter. The data type of the value based on the JSON specification. The last case is a complicated ...
https://dev.mysql.com/doc/mysql-shell/9.4/en/mysql-shell-utilities-parallel-table.html
MySQL Shell's parallel table import utility util.importTable() provides rapid data import to a MySQL relational table for large data files. The utility analyzes an input data file, distributes it into chunks, and uploads the chunks to the target ...
https://dev.mysql.com/doc/workbench/en/wb-admin-export-import-management.html
Use this wizard to either export or import SQL generated from MySQL Workbench or with the mysqldump command. Access these wizards from either the Navigator area of the sidebar, or by selecting Server from the main menu, and then either Data Import ...
https://dev.mysql.com/doc/workbench/en/wb-migration-database-concepts.html
The following table shows a comparison between each DBMS product supported by the Migration Wizard and MySQL. Table 10.1 Conceptual equivalents between supported DBMS products and MySQL Concept MS SQL Server Sybase ASE PostgreSQL MySQL Note ...
https://dev.mysql.com/doc/connectors/en/connector-net-simple-membership-tutorial.html
This section documents the ability to use a simple membership provider on MVC 4 templates. The configuration OAuth compatible for the application to login using external credentials from third-party providers like Google, Facebook, Twitter, or ...