Impl
Attributes
- Graph
-
- Supertypes
Members list
Value members
Concrete methods
Attributes
- Definition Classes
Converts the given query Q into a string. Useful for debugging and logging
Converts the given query Q into a string. Useful for debugging and logging
Attributes
Rolls back any active Savepoints and then rolls back this Transaction
Rolls back any active Savepoints and then rolls back this Transaction
Attributes
Runs the given query Q and returns a value of type R
Runs the given query Q and returns a value of type R
Attributes
Runs a java.lang.String
(and any interpolated variables) and deserializes the result set into a Seq
of the given type R
Runs a java.lang.String
(and any interpolated variables) and deserializes the result set into a Seq
of the given type R
Attributes
Creates a SQL Savepoint that is active within the given block; automatically releases the savepoint if the block completes successfully and rolls it back if the block terminates with an exception, and allows you to roll back the savepoint manually via the DbApi.Savepoint parameter passed to that block
Creates a SQL Savepoint that is active within the given block; automatically releases the savepoint if the block completes successfully and rolls it back if the block terminates with an exception, and allows you to roll back the savepoint manually via the DbApi.Savepoint parameter passed to that block
Attributes
Runs the given query Q and returns a Generator of values of type R. allow you to process the results in a streaming fashion without materializing the entire list of results in memory
Runs the given query Q and returns a Generator of values of type R. allow you to process the results in a streaming fashion without materializing the entire list of results in memory
Attributes
Runs a java.lang.String
(and any interpolated variables) and deserializes the result set into a streaming Generator
of the given type R
Runs a java.lang.String
(and any interpolated variables) and deserializes the result set into a streaming Generator
of the given type R
Attributes
Runs an java.lang.String
(and any interpolated variables) containing an UPDATE
or INSERT
query and returns the number of rows affected
Runs an java.lang.String
(and any interpolated variables) containing an UPDATE
or INSERT
query and returns the number of rows affected