Search Results
https://dev.mysql.com/doc/ndbapi/en/mgm-concepts.html
This is an example showing how to listen to events related to backup: int filter[] = { 15, NDB_MGM_EVENT_CATEGORY_BACKUP, 0 }; int fd = ndb_mgm_listen_event(handle, filter); Structured Log Events Handling of structured log events in the MGM API ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/creating-documents.html
DbDoc is a data type to represent JSON documents and how it is implemented is not defined by X DevAPI. Once a collection has been created, it can store JSON documents. You store documents by passing a JSON data structure to the Collection.add() ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/creating-documents.html
DbDoc is a data type to represent JSON documents and how it is implemented is not defined by X DevAPI. Once a collection has been created, it can store JSON documents. You store documents by passing a JSON data structure to the Collection.add() ...
https://dev.mysql.com/doc/x-devapi-userguide/en/dynamic-sql.html
A quoting function exists to escape SQL names and identifiers. Session.quoteName() escapes the identifier given in accordance to the settings of the current connection. Note The quoting function must not be used to escape values. Use the value ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-to-a-single-mysqld-node-setup.html
In this example a connection to a local MySQL Server instance running X Plugin on the default TCP/IP port 33060 is established using the MySQL user account user with its password. You are prompted to enter the user name and password in this case.
https://dev.mysql.com/doc/connectors/en/connector-net-connections-errors.html
The following code example shows how to manage the response of an application based on the actual error: C# Example MySql.Data.MySqlClient.MySqlConnection conn; string myConnectionString; myConnectionString = "server=127.0.0.1;uid=root;" + ...You ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-errors.html
The following code example shows how to manage the response of an application based on the actual error: C# Example MySql.Data.MySqlClient.MySqlConnection conn; string myConnectionString; myConnectionString = "server=127.0.0.1;uid=root;" + ...You ...
https://dev.mysql.com/doc/connectors/en/connector-j-reference-jdbc-url-format.html
This is the generic format of the connection URL: protocol//[hosts][/database][?properties] The URL consists of the following parts: Important Any reserved characters for URLs (for example, /, :, @, (, ), [, ], &, #, =, ?, and space) that appear in ... This section explains the syntax of the URLs for connecting to ...
https://dev.mysql.com/doc/refman/8.4/en/stored-routines-syntax.html
When a database is dropped, all stored routines associated with it are dropped as well. Stored routines can be dropped with the DROP PROCEDURE and DROP FUNCTION statements (see Section 15.1.29, “DROP PROCEDURE and DROP FUNCTION Statements”), and ... A stored routine is either a procedure or a ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-secondary-indexes.html
This program illustrates how to use secondary indexes in the NDB API. The source code for this example may be found in the NDB Cluster source tree, in storage/ndb/ndbapi-examples/ndbapi_simple_index/main.cpp.