Search Results
https://dev.mysql.com/doc/workbench/en/wb-grt-data-organization.html
The Generic RunTime (GRT) is the internal system used by MySQL Workbench to hold model document data. Application Objects Tree (GRT Tree) As mentioned previously, MySQL Workbench document data is stored in an object hierarchy. It is also the ...
https://dev.mysql.com/doc/internals/en/determining-binary-log-version.html
However, there are some exceptional conditions that must be accounted for: Exceptional Condition 1: In MySQL 4.0 and 4.1, the initial event in a binary log file might not be a start event. If a log file begins with an event that is not ... Given any ...
https://dev.mysql.com/doc/internals/en/event-structure.html
This section describes the general properties of events as byte sequences as they are written to binary or relay log files. Some details of event structure are invariant across binary log versions; others depend on the version. Within any given ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes-ndbrecord.html
This program illustrates how to use secondary indexes in the NDB API with the aid of the NdbRecord interface. The source code for this example may be found in the NDB Cluster source trees, in the file ...
https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-api-mynode.html
To create an instance, use the Node.js require() function with the driver name, like this: var nosql = require("mysql-js"); ConnectionProperties can be used to retrieve or set the connection properties for a given session. This class is used to ...
https://dev.mysql.com/doc/internals/en/item-class.html
MySQL's Item class is defined in .../sql/item.h, and its subclasses are defined in .../sql/item*.h (that is, in item.h, item_cmpfunc.h, item_func.h, item_geofunc.h, item_row.h, item_strfunc.h, item_subselect.h, item_sum.h, item_timefunc.h). To us, ...
https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-data-adapter.html
Previously, when using MySqlDataReader, the connection to the database was continually maintained unless explicitly closed. This decoupled mode of working with data is supported by MySQL Connector/NET. The Data Adapter is created by instantiating ...It is also possible to work in a manner where a connection is only established when ...
https://dev.mysql.com/doc/connector-net/en/connector-net-tutorials-data-adapter.html
Previously, when using MySqlDataReader, the connection to the database was continually maintained unless explicitly closed. This decoupled mode of working with data is supported by MySQL Connector/NET. The Data Adapter is created by instantiating ...It is also possible to work in a manner where a connection is only established when ...
https://dev.mysql.com/doc/internals/en/prepared-stored.html
Conventional statements, that is, SQL queries sent in COM_QUERY protocol packet, are the only statements present in MySQL server prior to version 4.1. Let us start with a general description of the MySQL statement processing workflow in order to ...
https://dev.mysql.com/doc/internals/en/select-derived.html
Derived tables is the internal name for subqueries in the FROM clause. Routine of execution derived tables and substituting temporary table instead of it (mysql_handle_derived()) will be called just after opening and locking all real tables used in ...The processing of derived tables is now included in the table opening process (open_and_lock_tables() ...