Search Results
                    
                    
            https://dev.mysql.com/doc/connector-j/en/connector-j-query-attributes.html
                                 Connector/J supports Query Attributes when it has been enabled on the server by installing the query_attributes component (see Prerequisites for Using Query Attributes for details). Attributes are set for a query by using the setAttribute() method ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/account-activity-auditing.html
                                 Applications can use the following guidelines to perform SQL-based auditing that ties database activity to MySQL accounts. When a client connects successfully, the server authenticates the client to a particular row in this table. The User and Host ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/binary-log-mysql-database.html
                                 The contents of the grant tables in the mysql database can be modified directly (for example, with INSERT or DELETE) or indirectly (for example, with GRANT or CREATE USER). Statements that affect mysql database tables are written to the binary log ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/blob.html
                                 A BLOB is a binary large object that can hold a variable amount of data. These differ only in the maximum length of the values they can hold. These correspond to the four BLOB types and have the same maximum lengths and storage requirements. They ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-metadata.html
                                 Metadata is “the data about the data.” Anything that describes the database—as opposed to being the contents of the database—is metadata. Thus column names, database names, user names, version names, and most of the string results from SHOW ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/charset-repertoire.html
                                 The repertoire of a character set is the collection of characters in the set. String expressions have a repertoire attribute, which can have two values: ASCII: The expression can contain only ASCII characters; that is, characters in the Unicode ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/command-line-options.html
                                 Program options specified on the command line follow these rules: Options are given after the command name. An option argument begins with one dash or two dashes, depending on whether it is a short form or long form of the option name. For example, ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/creating-ssl-files-using-openssl.html
                                 This section describes how to use the openssl command to set up SSL certificate and key files for use by MySQL servers and clients. The first example shows a simplified procedure such as you might use from the command line. The first two examples ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/declare-handler.html
                                statement handler_action: { CONTINUE | EXIT | UNDO } condition_value: { mysql_error_code | SQLSTATE [VALUE] sqlstate_value | condition_name | SQLWARNING | NOT FOUND | SQLEXCEPTION } The DECLARE ... HANDLER statement specifies a handler that deals ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/distinct-optimization.html
                                 DISTINCT combined with ORDER BY needs a temporary table in many cases. Because DISTINCT may use GROUP BY, learn how MySQL works with columns in ORDER BY or HAVING clauses that are not part of the selected columns. In most cases, a DISTINCT clause ...