Search Results
https://dev.mysql.com/doc/x-devapi-userguide/en/building-expressions.html
This section explains how to build expressions using X DevAPI. When working with MySQL expressions used in CRUD, statements can be specified in two ways. The first is to use strings to formulate the expressions which should be familiar if you have ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-connection-pool.html
X DevAPI supports connection pooling, which can reduce overhead for applications that open many connections to a MySQL Server. When opening a new Session with a Client, before a new network connection is opened, an attempt is made to retrieve from ...
https://dev.mysql.com/doc/x-devapi-userguide/en/connecting-to-a-session.html
There are several ways of using a session to connect to MySQL depending on the specific setup in use.
https://dev.mysql.com/doc/x-devapi-userguide/en/devapi-users-statement-execution.html
This section explains statement execution, with information on how to handle transactions and errors.
https://dev.mysql.com/doc/x-devapi-userguide/en/dynamic-sql.html
This is true for working with collections and for working with relational tables. A quoting function exists to escape SQL names and identifiers. Session.quoteName() escapes the identifier given in accordance to the settings of the current ...
https://dev.mysql.com/doc/x-devapi-userguide/en/implementation-notes.html
This section provides notes on the different language-specific implementations of X DevAPI.
https://dev.mysql.com/doc/x-devapi-userguide/en/method-chaining.html
This section explains how to use method chaining instead of working with SQL strings of JSON structures. X DevAPI supports a number of modern practices to make working with CRUD operations easier and to fit naturally into modern development ...
https://dev.mysql.com/doc/x-devapi-userguide/en/mysql-x-crud-ebnf-definitions.html
This chapter provides a visual reference guide to the objects and functions available in the X DevAPI.
https://dev.mysql.com/doc/x-devapi-userguide/en/mysql-x-expressions-ebnf-definitions.html
This section provides a visual reference guide to the grammar for the expression language used in X DevAPI.
https://dev.mysql.com/doc/x-devapi-userguide/en/transaction-handling.html
Transactions can be used to group operations into an atomic unit. Either all operations of a transaction succeed when they are committed, or none. It is possible to roll back a transaction as long as it has not been committed. Transactions can be ...