Search Results
                    
                    
            https://dev.mysql.com/doc/mysql-installer/en/server-file-permission-options.html
                                You have the following options: MySQL Installer can configure the folders and files with full control granted exclusively to the user running the Windows service, if applicable, and to the Administrators group. Have MySQL Installer use a ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/index.html
                                Users of older NDB Cluster releases should upgrade to the latest available release of NDB Cluster 8.0, which is the most recent GA release series, or to the NDB Cluster 8.4 LTS series. For help with using MySQL, please visit the MySQL Forums, where ... MySQL NDB Cluster API Developer Guide This is the MySQL NDB Cluster API Developer Guide, which provides information about developing applications using MySQL NDB Cluster as a data ...
                                            
                https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-20.html
                                Examples: mysqlx://user:password@host:port/db?compression=DISABLED mysqlx://user:password@host:port/db?compression=PREFERRED mysqlx://user:password@host:port/db?compression=REQUIRED SessionSettings objects permit a SessionOption::COMPRESSION option ... Connection Management Notes Packaging Notes Bugs Fixed Connection Management Notes For connections made using X Plugin, Connector/C++ now provides control over the use of compression to minimize the number of bytes sent over connections to the ...
                                            
                https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-changelog-13-2-4-0-0.html
                                It was not possible to monitor a MySQL database target if the user's password included an equals sign (=).  Important As of this release, 13.2.4.0.0, MySQL 8 is supported. It is not possible to monitor MySQL 8 with earlier versions of Oracle ...
                                            
                https://dev.mysql.com/doc/mysql-em-plugin/en/myoem-compliance-security-standard-rules.html
                                Such a server could access any file on the client host to which the client user has read access. In a Web environment where the clients are connecting from a separate web server, a user could use LOAD DATA LOCAL to read any files that the web server ...Consider whether the filtering of events by account is required, and remove the configuration values for audit_log_exclude_accounts or audit_log_include_accounts if ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-dns-srv.html
                                Java Code Session mySession = new SessionFactory().getSession("mysqlx+srv://user:password@_mysql._tcp.example.com/db"); Node.js JavaScript Code mysqlx.getSession({ host: '_mysqlx._tcp.example.com', resolveSrv: true }) C# Code var session = ... X ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide/en/connection-attributes-xdevapi.html
                                User-defined attributes are key-value mappings provided by the user or application. connection-attributes=[key1=value1,key2=value2, ...] sends user-defined connection attributes as key-value pairs alongside the client-defined connection attributes. 
                                            
                https://dev.mysql.com/doc/mysql-monitor/8.0/en/mem-acl-role-permissions-ref.html
                                If you log in to the application as a group-specific user, the View filter displays the group to which you are assigned, and the All group, which contains only those assets to which you have access.  This section describes the permissions available ...
                                            
                https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/connection-attributes-xdevapi.html
                                User-defined attributes are key-value mappings provided by the user or application. connection-attributes=[key1=value1,key2=value2, ...] sends user-defined connection attributes as key-value pairs alongside the client-defined connection attributes. 
                                            
                https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/working-with-sql-result-sets.html
                                var res = mySession.sql('SELECT name, age FROM users').execute(); var row; while (row = res.fetchOne()) { print('Name: ' + row['name'] + '\n'); print(' Age: ' + row.age + '\n'); } SqlResult differs from results returned by CRUD operations in the way ... When you execute an SQL operation on a Session using the sql() method, an SqlResult is ...