Search Results
                    
                    
            https://dev.mysql.com/doc/internals/en/implementing-rnd-pos-method.html
                                 The [custom-engine.html#custom-engine-api-reference-rnd_pos rnd_pos()] method behaves in a similar fashion to the rnd_next() method but takes an additional parameter: int ha_foo::rnd_pos(byte * buf, byte *pos) The *pos parameter contains ...
                                            
                https://dev.mysql.com/doc/internals/en/implementing-rollback.html
                                 Of the two major transactional operations, ROLLBACK is the more complicated to implement. All operations that occurred during the transaction must be reversed so that all rows are unchanged from before the transaction began. To support ROLLBACK, ...
                                            
                https://dev.mysql.com/doc/internals/en/write-row.html
                                Synopsis virtual int write_row ( buf); byte * buf ; Description This is the write_row method. No [custom-engine.html#custom-engine-api-reference-extra extra()] hint is given currently if a bulk load is happening. buf is a byte array of data with a ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/time-zone-support.html
                                 This section describes the time zone settings maintained by MySQL, how to load the system tables required for named time support, how to stay current with time zone changes, and how to enable leap-second support. Time zone offsets are also ...
                                            
                https://dev.mysql.com/doc/extending-mysql/8.4/en/services-for-plugins.html
                                 MySQL server plugins have access to server “plugin services.” The plugin services interface exposes server functionality that plugins can call. It complements the plugin API and has these characteristics: Services enable plugins to access code ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-migration-database-mssql-typemapping.html
                                 The following table shows the mapping between Microsoft SQL Server (source) data types and MySQL data types. Table 10.2 Type mapping Source Type MySQL Type Comment INT INT TINYINT TINYINT UNSIGNED flag set in MySQL. SMALLINT SMALLINT BIGINT BIGINT ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-modules.html
                                 In the GRT Modules are libraries containing a list of functions that are exported for use by code in other modules, scripts, or Workbench itself. Modules can be written in C++ or Python, but the data types used for arguments and the return value ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-connp-props-high-availability-and-clustering.html
                                 autoReconnect Should the driver try to re-establish stale and/or dead connections? If enabled the driver will throw an exception for queries issued on a stale or dead connection, which belong to the current transaction, but will attempt reconnect ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-reference-implementation-notes.html
                                 MySQL Connector/J, as a rigorous implementation of the JDBC API, passes all of the tests in the publicly available version of Oracle's JDBC compliance test suite. The JDBC specification is flexible on how certain functionality should be implemented. This section gives details on an interface-by-interface level about implementation decisions that might affect how you code applications with MySQL ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-reference-type-conversions.html
                                 MySQL Connector/J is flexible in the way it handles conversions between MySQL data types and Java data types. In general, any MySQL data type can be converted to a java.lang.String, and any numeric type can be converted to any of the Java numeric ...