Search Results
                    
                    
            https://dev.mysql.com/doc/workbench/en/wb-develop-sql-editor-table-search.html
                                total matches: [1000] Search columns of all types check box: If checked, non-text column type columns are cast to CHAR to perform the matches, otherwise only text types (CHAR, VARCHAR, and TEXT) are searched.  Find data across a MySQL connection by ...
                                            
                https://dev.mysql.com/doc/connectors/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/connectors/en/connector-net-8-0-connection-options.html
                                CertificateStoreLocation , Certificate Store Location Default: null Enables you to access a certificate held in a personal store, rather than use a certificate file and password combination. CharacterSet , Character Set , CharSet Specifies the ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-connection-parameters.html
                                charset Character Set - The character set to use for the connection. It can be used in combination with the option parameter NO_CACHE. Without this option, parameter binding will be truncated to 255 characters. PAD_SPACE Pad CHAR to full length with ...On Unix and macOS, use the parameter name and value as the keyword/value pair in the DSN ...
                                            
                https://dev.mysql.com/doc/connector-net/en/connector-net-8-0-connection-options.html
                                CertificateStoreLocation , Certificate Store Location Default: null Enables you to access a certificate held in a personal store, rather than use a certificate file and password combination. CharacterSet , Character Set , CharSet Specifies the ...
                                            
                https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-configuration-connection-parameters.html
                                charset Character Set - The character set to use for the connection. It can be used in combination with the option parameter NO_CACHE. Without this option, parameter binding will be truncated to 255 characters. PAD_SPACE Pad CHAR to full length with ...On Unix and macOS, use the parameter name and value as the keyword/value pair in the DSN ...
                                            
                https://dev.mysql.com/doc/internals/en/frm-file-format.html
                                Table 11.1 .frm File Header Section Offset Length Value Explanation 0000 1 fe Always 0001 1 01 Always 0002 1 09 FRM_VER (which is in include/mysql_version.h) +3 +test(create_info->varchar) 0003 1 09 See enum legacy_db_type in sql/handler.h. First, ... Regardless of the storage engine you choose, every MySQL table you create is represented on disk by a .frm file that describes the table's format (that is, the table ...
                                            
                https://dev.mysql.com/doc/internals/en/open.html
                                Synopsis virtual int open ( name, mode, test_if_locked); const char * name ; int mode ; uint test_if_locked ; Description This is the open method. Usage This example is from the CSV storage engine: int ha_tina::open(const char *name, int mode, uint ...For instance when a request comes in for a select on the table (tables are not open and closed for each request, they are ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-session.html
                                Integer for INT key types, Long for BIGINT key types, or String for char and varchar types. Integer for INT key types, Long for BIGINT key types, or String for char and varchar types. Session extends AutoCloseable so it can be used in the ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/mgm-examples-event-logging-basic.html
                                 This example shows the basics of handling event logging using the MGM API. The source code for this program may be found in the NDB Cluster source tree, in the file storage/ndb/ndbapi-examples/mgmapi_logevent/main.cpp.