Search Results
                    
                    
            https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-result-sets.html
                                 clobberStreamingResults This will cause a streaming result set to be automatically closed, and any outstanding data still streaming from the server to be discarded if another query is executed before all the data has been read from the server. 
                                            
                https://dev.mysql.com/doc/connector-j/en/connector-j-YEAR.html
                                 How a value in a MySQL YEAR column is handled is controlled by the connection property yearIsDateType: If yearIsDateType is true (the default), YEAR is mapped to the Java data type java.sql.Date. If yearIsDateType is false, YEAR is mapped to the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/audit-api-message-emit.html
                                 The audit_api_message_emit component enables applications to add their own message events to the audit log, using the audit_api_message_emit_udf() function. For concreteness, examples use the audit_log plugin described in Section 8.4.5, “MySQL ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/binary-log.html
                                 The binary log contains “events” that describe database changes such as table creation operations or changes to table data. It also contains events for statements that potentially could have made changes (for example, a DELETE which matched no ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/binary-varbinary.html
                                 The BINARY and VARBINARY types are similar to CHAR and VARCHAR, except that they store binary strings rather than nonbinary strings. This means they have the binary character set and collation, and comparison and sorting are based on the numeric ...
                                            
                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/case-sensitivity.html
                                 For nonbinary strings (CHAR, VARCHAR, TEXT), string searches use the collation of the comparison operands. For binary strings (BINARY, VARBINARY, BLOB), comparisons use the numeric values of the bytes in the operands; this means that for alphabetic ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/character-arrays.html
                                 Each simple character set has a configuration file located in the sql/share/charsets directory. For a character set named MYSYS, the file is named MYSET.xml. <map> elements appear within these elements: <ctype> defines attributes for each character. <collation> elements indicate character ordering for comparison and sorting, one element per ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/choosing-types.html
                                 For optimum storage, you should try to use the most precise type in all cases. For example, if an integer column is used for values in the range from 1 to 99999, MEDIUMINT UNSIGNED is the best type. Of the types that represent all the required ...
                                            
                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, ...