PDF (US Ltr)
- 35.1Mb
PDF (A4)
- 35.2Mb
Man Pages (TGZ)
- 256.4Kb
Man Pages (Zip)
- 361.3Kb
Info (Gzip)
- 3.4Mb
Info (Zip)
- 3.4Mb
Search Results
https://dev.mysql.com/doc/refman/5.7/en/plugin-loading.html
Server plugins must be loaded into the server before they can be used. It is also possible to control the activation state of loaded plugins at startup, and to unload them at runtime. While a plugin is loaded, information about it is available as ...
https://dev.mysql.com/doc/refman/5.7/en/plugin-services.html
MySQL server plugins have access to server “plugin services.” The plugin services interface complements the plugin API by exposing server functionality that plugins can call. For developer information about writing plugin services, see MySQL ...
https://dev.mysql.com/doc/refman/5.7/en/populating-spatial-columns.html
After you have created spatial columns, you can populate them with spatial data. Values should be stored in internal geometry format, but you can convert them to that format from either Well-Known Text (WKT) or Well-Known Binary (WKB) format. For ...
https://dev.mysql.com/doc/refman/5.7/en/precision-math-decimal-characteristics.html
The format is explained (with an example) in the decimal2bin() function. This section discusses the characteristics of the DECIMAL data type (and its synonyms), with particular regard to the following topics: Maximum number of digits Storage format ...
https://dev.mysql.com/doc/refman/5.7/en/preface.html
This manual is not intended for use with older versions of the MySQL software due to the many functional and other differences between MySQL 5.7 and previous versions. This is the Reference Manual for the MySQL Database System, version 5.7, through ...
https://dev.mysql.com/doc/refman/5.7/en/prepare.html
A statement prepared in stored program context cannot refer to stored procedure or function parameters or local variables because they go out of scope when the program ends and would be unavailable were the statement to be executed later outside the ... PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a SQL statement and assigns it a name, stmt_name, by which to refer to the statement ...
https://dev.mysql.com/doc/refman/5.7/en/programs-overview.html
In addition to the provided SQL functionality, similar to mysql, MySQL Shell provides scripting capabilities for JavaScript and Python and includes APIs for working with MySQL. Later sections provide a more detailed description of each one, with the ...
https://dev.mysql.com/doc/refman/5.7/en/rename-table.html
In such cases, you must drop and re-create the foreign keys for them to function properly. RENAME TABLE tbl_name TO new_tbl_name [, tbl_name2 TO new_tbl_name2] ... You must have ALTER and DROP privileges for the original table, and CREATE and ...
https://dev.mysql.com/doc/refman/5.7/en/replace-third-party-yum.html
mysql_upgrade also performs other functions; see Section 4.4.7, “mysql_upgrade — Check and Upgrade MySQL Tables” for details. For supported Yum-based platforms (see Section 2.5.1, “Installing MySQL on Linux Using the MySQL Yum ...
https://dev.mysql.com/doc/refman/5.7/en/replace.html
If you are using the C API, the affected-rows count can be obtained using the mysql_affected_rows() function. REPLACE [LOW_PRIORITY | DELAYED] [INTO] tbl_name [PARTITION (partition_name [, partition_name] ...)] [(col_name [, col_name] ...)] {VALUES ...