The back-end type required by this profile
The back-end type required by this profile
The type of a (partially) compiled AST for Insert operations.
The type of a (partially) compiled AST for Insert operations. Unlike querying or deleting, inserts may require different compilation results which should be computed lazily.
Pseudo-invoker for running DDL statements.
Pseudo-invoker for running DDL statements.
The type of insert invokers returned by the driver
The type of insert invokers returned by the driver
Defines the standard InsertInvoker methods for inserting data, which are available at the level of BasicProfile.
Defines the standard InsertInvoker methods for inserting data, which are available at the level of BasicProfile.
The type of query executors returned by the driver
The type of query executors returned by the driver
The type of a schema description (DDL)
The type of a schema description (DDL)
A schema description contains the SQL statements for creating and dropping database entities.
A schema description contains the SQL statements for creating and dropping database entities. Schema descriptions can be combined for creating or dropping multiple entities together, even if they have circular dependencies.
The API for using the query language with a single import statement.
The API for using the query language with a single import statement. This provides the driver's implicits, the Database and Session objects for DB connections, and commonly used query language types and objects.
The back-end implementation for this profile
The back-end implementation for this profile
(Partially) ompile an AST for insert operations
(Partially) ompile an AST for insert operations
Create a DDLInvoker -- this method should be implemented by drivers as needed
Create a DDLInvoker -- this method should be implemented by drivers as needed
Create an InsertInvoker -- this method should be implemented by drivers as needed
Create an InsertInvoker -- this method should be implemented by drivers as needed
Create an executor -- this method should be implemented by drivers as needed
Create an executor -- this method should be implemented by drivers as needed
The compiler used for deleting data
The compiler used for deleting data
The compiler used for inserting data
The compiler used for inserting data
The compiler used for queries
The compiler used for queries
The compiler used for updates
The compiler used for updates
The implicit values and conversions provided by this driver.
The implicit values and conversions provided by this driver.
This is a subset of
. You usually want to import
simple
simple._
instead of using Implicit
.
(Since version 3.0) Use 'api' instead of 'simple' or 'Implicit' to import the new API
A collection of values for using the query language with a single import statement.
A collection of values for using the query language with a single import statement. This provides the driver's implicits, the Database and Session objects for DB connections, and commonly used query language types and objects.
(Since version 3.0) Use 'api' instead of 'simple' or 'Implicit' to import the new API
The capabilities supported by this driver.
The capabilities supported by this driver. This can be used to query at runtime whether a specific feature is supported.
Compute the capabilities.
Compute the capabilities. This should be overridden in subclasses as needed.
Basic profile for SQL-based drivers.