Search Results
https://dev.mysql.com/doc/x-devapi-userguide/en/shell-automatic-code-execution-results.html
When you use X DevAPI in a programming language that fully specifies the syntax to be used, for example, when executing SQL statements through an X DevAPI session or working with any of the CRUD operations, the actual operation is performed only ...
https://dev.mysql.com/doc/x-devapi-userguide/en/synchronous-vs-asynchronous-execution.html
When a callback function is specified, the CRUD operation is non-blocking which means that the next statement is called immediately even though the result from the database has not yet been fetched. Traditionally, many MySQL drivers used a ...
https://dev.mysql.com/doc/x-devapi-userguide/en/working-with-data-sets.html
var myColl = db.getCollection('my_collection'); myColl.find('name like :name') .bind('name', 'L%') .execute(function (doc) { console.log(doc); }); The following example shows how to directly access the rows returned by a Table.select() operation.
https://dev.mysql.com/doc/relnotes/mysql-monitor/8.0/en/news-8-0-20.html
Functionality Added or Changed Bugs Fixed Functionality Added or Changed It is now possible to check the blackout status of a MySQL Enterprise Monitor Agent or MySQL instance. This functionality is offered as a REST API and is accessible from the ...
https://dev.mysql.com/doc/mysql-monitor/8.0/en/security-advisors-ref.html
Prior to MySQL 4.1, password hashes computed by the PASSWORD() function were 16 bytes long. However, in order to allow backward-compatibility with user tables that have been migrated from pre-4.1 systems, you can configure MySQL to accept logins for ...Note MySQL Enterprise Firewall and MySQL Enterprise Audit Plug-in advisors are described in MySQL Enterprise Firewall and MySQL Enterprise Audit ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/devapi-users-working-with-relational-tables.html
The X DevAPI SQL CRUD functions allow you to work with relational tables in manners similar to using traditional SQL statements. The following code sample shows how to use the add() and select() methods of the X DevAPI SQL CRUD functions, which are ...values('Laurie', mysqlx.dateValue(2000, 5, 27), 19).execute(); // Find a row in the SQL Table var myResult = myTable.select(['_id', 'name', ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/dynamic-sql.html
A quoting function exists to escape SQL names and identifiers. Note The quoting function must not be used to escape values. Session.quoteName() escapes the identifier given in accordance to the settings of the current connection. Use the value ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/shell-automatic-code-execution-results.html
When you use X DevAPI in a programming language that fully specifies the syntax to be used, for example, when executing SQL statements through an X DevAPI session or working with any of the CRUD operations, the actual operation is performed only ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/devapi-users-working-with-relational-tables.html
The X DevAPI SQL CRUD functions allow you to work with relational tables in manners similar to using traditional SQL statements. The following code sample shows how to use the add() and select() methods of the X DevAPI SQL CRUD functions, which are ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/shell-automatic-code-execution-results.html
When you use X DevAPI in a programming language that fully specifies the syntax to be used, for example, when executing SQL statements through an X DevAPI session or working with any of the CRUD operations, the actual operation is performed only ...