A ClassTag for the erased type of this type's Scala values
A ClassTag for the erased type of this type's Scala values
Get a result column of the type.
Get a result column of the type. For reference types, SQL NULL values
are returned as null
, for primitive types a default value is returned.
Indicates whether values of this type have a literal representation in SQL statements.
Indicates whether values of this type have a literal representation in
SQL statements.
This must return false if valueToSQLLiteral
throws a SlickException.
QueryBuilder (and profile-specific subclasses thereof) uses this method
to treat LiteralNodes as volatile (i.e. using bind variables) as needed.
Set a parameter of the type to NULL.
Set a parameter of the type.
The constant from java.sql.Types that is used for setting parameters of the type to NULL.
The default name for the SQL type that is used for column declarations.
Update a column of the type in a mutable result set.
Convert a value to a SQL literal.
Convert a value to a SQL literal.
This should throw a SlickException
if hasLiteralForm
is false.
Check if the value returned by the immediately preceding call to getValue() was NULL.
All children of this Type.
All children of this Type.
Apply a side-effecting function to all children.
Apply a side-effecting function to all children.
Return the name, main info, attribute info and named children
Apply a transformation to all type children and reconstruct this type with the new children, or return the original object if no child is changed.
Apply a transformation to all type children and reconstruct this type with the new children, or return the original object if no child is changed.
Set an Option parameter of the type.
The structural view of this type
The structural view of this type
Remove all NominalTypes recursively from this Type
Remove all NominalTypes recursively from this Type
Update a column of the type in a mutable result set with NULL.
A JdbcType object represents a Scala type that can be used as a column type in the database. Implicit JdbcTypes for the standard types are provided by the profile.