A node that wraps a ResultConverter
Result converter that can write to multiple sub-converters and read from the first one
An efficient (albeit boxed) ResultConverter for Product/Tuple values.
The required backend level for RelationalProfile.
A profile for relational databases that does not assume the existence of SQL (or any other text-based language for executing statements).
A profile for relational databases that does not assume the existence of SQL (or any other text-based language for executing statements). It requires a relational table structure as its basic model of data.
A ResultConverter
is used to read data from a result, update a result,
and set parameters of a query.
Create a ResultConverter for parameters and result sets.
Create a ResultConverter for parameters and result sets. Subclasses have to provide profile-specific createColumnConverter implementations.
The domain of a ResultConverter
and associated classes.
The domain of a ResultConverter
and associated classes. It defines the
Reader
, Writer
and Updater
types that are needed at the lowest
level of ResultConverters for accessing the underlying profile-specific
data structures.
A ResultConverter
that simplifies the implementation of fast path
converters.
A ResultConverter
that simplifies the implementation of fast path
converters. It always wraps a TypeMappingResultConverter
on top of a ProductResultConverter
, allowing direct access to the product
elements.
Capabilities for slick.profile.RelationalProfile.
Contains the abstract
RelationalProfile
and related code.