Search Results
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes-ndbrecord.html
The source code for this example may be found in the NDB Cluster source trees, in the file storage/ndb/ndbapi-examples/ndbapi_s_i_ndbrecord/main.cpp. */ NdbDictionary::RecordSpecification spec[2]; spec[0].column= col1; spec[0].offset= ... This ...
https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-spring-config.html
For the examples in this section the MySQL world sample database will be used. The first task is to set up a MySQL data source through Spring. For example, to configure a connection to a MySQL server supporting the world sample database, you might ... The Spring Framework is a Java-based application framework designed for assisting in application design by providing a way to configure ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-blob-serverprep.html
The first step is using MySQL with BLOB data is to configure the server. For this example, use the following table definition: CREATE TABLE file( file_id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, file_name VARCHAR(64) NOT NULL, ...This ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-blob-serverprep.html
The first step is using MySQL with BLOB data is to configure the server. For this example, use the following table definition: CREATE TABLE file( file_id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY, file_name VARCHAR(64) NOT NULL, ...This ...
https://dev.mysql.com/doc/internals/en/sql-directory.html
Programs for handling SQL commands. The "core" of MySQL. These are the .c and .cc files in the sql directory: derror.cc --- read language-dependent message file des_key_file.cc --- load DES keys from plaintext file discover.cc --- Functions for ...
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-verify-package.html
The signature file has the same name as the distribution file with an .asc extension, as shown in the following table. Here are explanations for the warnings: gpg: no ultimately trusted keys found: This means that the specific key is not "ultimately ... After downloading the MySQL package and before attempting to install it, ensure that the package is intact and has not been tampered ...
https://dev.mysql.com/doc/workbench/en/wb-model-overview-privileges.html
The Schema Privileges panel has the following sections, used to create users for your schemas and to define roles: Users Roles The following figure displays the Schema Privileges section of the MySQL Model tab. Figure 9.7 Roles and Privileges ...
https://dev.mysql.com/doc/ndbapi/en/ndb-ndberror.html
This section provides information about the NdbError data structure, which contains status and other information about errors, including error codes, classifications, and messages. You can also check the file storage/ndb/src/ndbapi/ndberror.c in ...
https://dev.mysql.com/doc/mysql-cluster-manager/8.4/en/mcm-change-process.html
To do this, you must specify the data node process using its process ID. This means that change process can be used to change the data node process running on one or more data nodes from the single-threaded data node daemon (ndbd) to the ... change ...
https://dev.mysql.com/doc/refman/8.4/en/create-procedure.html
This account must have permission to access the database with which the routine is associated. If you alter the database default character set or collation, stored routines that are to use the new database defaults must be dropped and recreated. By ...The CREATE FUNCTION statement is also used in MySQL to support loadable ...