class ColumnBuilder extends AnyRef
- Alphabetic
- By Inheritance
- ColumnBuilder
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ColumnBuilder(tableBuilder: TableBuilder, meta: MColumn)
Value Members
- final val StringPattern: Regex
Regex matcher to extract string out ouf surrounding
- def autoInc: Boolean
Indicates whether this is an auto increment column
- def createPrimaryKeyColumnOption: Boolean
Indicates whether a ColumnOption Primary key should be put into the model.
Indicates whether a ColumnOption Primary key should be put into the model. Only valid for single column primary keys.
- def dbType: Option[String]
A (potentially non-portable) database column type.
A (potentially non-portable) database column type. For string types, this should not include a length ascription.
- def default: Option[Option[Any]]
The default value for the column.
The default value for the column. The outer option is used to indicate if a default value is given. The inner Option is used to allow giving None for a nullable column. This method must not return Some(None) for a non-nullable column.
Default values for autoInc column are automatically ignored (as if returning None).
If
ignoreInvalidDefaults = true
, Slick catches scala.MatchError and java.lang.NumberFormatException thrown by this method, logs the message and treats it as no default value for convenience. - def defaultColumnOption: Option[Default[_]]
The default value for the column as a ColumnOption Default or None if no default.
The default value for the column as a ColumnOption Default or None if no default. The value wrapped by ColumnOption Default needs to be an Option in case of a nullable column but can't be an Option in case of a non-nullable Column.
Default values for autoInc columns are automatically ignored.
If
ignoreInvalidDefaults = true
, Slick catches scala.MatchError and java.lang.NumberFormatException thrown by this method, logs the message and treats it as no default value for convenience. - def length: Option[Int]
Column length of string types
- def model: Column
- def name: String
- def nullable: Boolean
Indicates whether this is a nullable column
- def rawDefault: Option[String]
- def tpe: String
Scala type this column is mapped to
- def varying: Boolean
Indicates whether this should be a varchar in case of a string column.
Indicates whether this should be a varchar in case of a string column. Should be based on the value of dbType in the future.
edit this text on github
Scala Language-Integrated Connection Kit
This is the API documentation for the Slick database library. It should be used as an additional resource to the user manual.
Further documentation for Slick can be found on the documentation pages.
To the slick package list...