Packages

c

slick.jdbc.HsqldbProfile

HsqldbJdbcTypes

class HsqldbJdbcTypes extends JdbcTypes

Source
HsqldbProfile.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HsqldbJdbcTypes
  2. JdbcTypes
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HsqldbJdbcTypes()

Type Members

  1. class HsqldbInstantJdbcType extends InstantJdbcType with HsqldbTimeJdbcTypeWithOffset
  2. class HsqldbOffsetDateTimeJdbcType extends OffsetDateTimeJdbcType with HsqldbTimeJdbcTypeWithOffset
  3. class HsqldbOffsetTimeJdbcType extends OffsetTimeJdbcType with HsqldbTimeJdbcTypeWithOffset
  4. trait HsqldbTimeJdbcTypeWithOffset extends AnyRef

    HSQLDB uses a non-standard string representation of timestamps.

    HSQLDB uses a non-standard string representation of timestamps. It doesn't pad the hour and offset-hour with zeros. Although the hour can be handled by DateTimeFormatterBuilder, the offset hour can't. See it's method appendOffset() So we handle this in two steps: first pad (trim) zeros in the offset, and then use a custom DateTimeFormatterBuilder.

  5. class BigDecimalJdbcType extends JdbcProfile.DriverJdbcType[BigDecimal] with NumericTypedType
    Definition Classes
    JdbcTypes
  6. class BlobJdbcType extends JdbcProfile.DriverJdbcType[Blob]
    Definition Classes
    JdbcTypes
  7. class BooleanJdbcType extends JdbcProfile.DriverJdbcType[Boolean]
    Definition Classes
    JdbcTypes
  8. class ByteArrayJdbcType extends JdbcProfile.DriverJdbcType[Array[Byte]]
    Definition Classes
    JdbcTypes
  9. class ByteJdbcType extends JdbcProfile.DriverJdbcType[Byte] with NumericTypedType
    Definition Classes
    JdbcTypes
  10. class CharJdbcType extends JdbcProfile.DriverJdbcType[Char]
    Definition Classes
    JdbcTypes
  11. class ClobJdbcType extends JdbcProfile.DriverJdbcType[Clob]
    Definition Classes
    JdbcTypes
  12. class DateJdbcType extends JdbcProfile.DriverJdbcType[Date]

    Use ZonedDateTimeJdbcType or OffsetDateTimeJdbcType or LocalTimeJdbcType or java.time.OffsetTime or java.time.LocalDateTime or java.time.LocalDate or java.time.Instant instead.

  13. class DoubleJdbcType extends JdbcProfile.DriverJdbcType[Double] with NumericTypedType
    Definition Classes
    JdbcTypes
  14. class FloatJdbcType extends JdbcProfile.DriverJdbcType[Float] with NumericTypedType
    Definition Classes
    JdbcTypes
  15. class InstantJdbcType extends JdbcProfile.DriverJdbcType[Instant]
    Definition Classes
    JdbcTypes
  16. class IntJdbcType extends JdbcProfile.DriverJdbcType[Int] with NumericTypedType
    Definition Classes
    JdbcTypes
  17. class LocalDateJdbcType extends JdbcProfile.DriverJdbcType[LocalDate]
    Definition Classes
    JdbcTypes
  18. class LocalDateTimeJdbcType extends JdbcProfile.DriverJdbcType[LocalDateTime]
    Definition Classes
    JdbcTypes
  19. class LocalTimeJdbcType extends JdbcProfile.DriverJdbcType[LocalTime]
    Definition Classes
    JdbcTypes
  20. class LongJdbcType extends JdbcProfile.DriverJdbcType[Long] with NumericTypedType
    Definition Classes
    JdbcTypes
  21. class NullJdbcType extends JdbcProfile.DriverJdbcType[Null]
    Definition Classes
    JdbcTypes
  22. class OffsetDateTimeJdbcType extends JdbcProfile.DriverJdbcType[OffsetDateTime]
    Definition Classes
    JdbcTypes
  23. class OffsetTimeJdbcType extends JdbcProfile.DriverJdbcType[OffsetTime]
    Definition Classes
    JdbcTypes
  24. class ShortJdbcType extends JdbcProfile.DriverJdbcType[Short] with NumericTypedType
    Definition Classes
    JdbcTypes
  25. class StringJdbcType extends JdbcProfile.DriverJdbcType[String]
    Definition Classes
    JdbcTypes
  26. class TimeJdbcType extends JdbcProfile.DriverJdbcType[Time]
    Definition Classes
    JdbcTypes
  27. class TimestampJdbcType extends JdbcProfile.DriverJdbcType[Timestamp]
    Definition Classes
    JdbcTypes
  28. class UUIDJdbcType extends JdbcProfile.DriverJdbcType[UUID]
    Definition Classes
    JdbcTypes
  29. class ZonedDateTimeJdbcType extends JdbcProfile.DriverJdbcType[ZonedDateTime]
    Definition Classes
    JdbcTypes

Value Members

  1. val bigDecimalJdbcType: BigDecimalJdbcType
    Definition Classes
    JdbcTypes
  2. val blobJdbcType: BlobJdbcType
    Definition Classes
    JdbcTypes
  3. val booleanJdbcType: BooleanJdbcType
    Definition Classes
    JdbcTypes
  4. val byteArrayJdbcType: ByteArrayJdbcType
    Definition Classes
    HsqldbJdbcTypesJdbcTypes
  5. val byteJdbcType: ByteJdbcType
    Definition Classes
    JdbcTypes
  6. val charJdbcType: CharJdbcType
    Definition Classes
    JdbcTypes
  7. val clobJdbcType: ClobJdbcType
    Definition Classes
    JdbcTypes
  8. val dateJdbcType: DateJdbcType
    Definition Classes
    JdbcTypes
  9. val doubleJdbcType: DoubleJdbcType
    Definition Classes
    JdbcTypes
  10. val floatJdbcType: FloatJdbcType
    Definition Classes
    JdbcTypes
  11. val instantType: HsqldbInstantJdbcType
    Definition Classes
    HsqldbJdbcTypesJdbcTypes
  12. val intJdbcType: IntJdbcType
    Definition Classes
    JdbcTypes
  13. val localDateTimeType: LocalDateTimeJdbcType
    Definition Classes
    JdbcTypes
  14. val localDateType: LocalDateJdbcType
    Definition Classes
    JdbcTypes
  15. val localTimeType: LocalTimeJdbcType
    Definition Classes
    HsqldbJdbcTypesJdbcTypes
  16. val longJdbcType: LongJdbcType
    Definition Classes
    JdbcTypes
  17. val nullJdbcType: NullJdbcType
    Definition Classes
    JdbcTypes
  18. val offsetDateTimeType: HsqldbOffsetDateTimeJdbcType
    Definition Classes
    HsqldbJdbcTypesJdbcTypes
  19. val offsetTimeType: HsqldbOffsetTimeJdbcType
    Definition Classes
    HsqldbJdbcTypesJdbcTypes
  20. val shortJdbcType: ShortJdbcType
    Definition Classes
    JdbcTypes
  21. val stringJdbcType: StringJdbcType
    Definition Classes
    JdbcTypes
  22. val timeJdbcType: TimeJdbcType
    Definition Classes
    JdbcTypes
  23. val timestampJdbcType: TimestampJdbcType
    Definition Classes
    JdbcTypes
  24. val uuidJdbcType: UUIDJdbcType
    Definition Classes
    HsqldbJdbcTypesJdbcTypes
  25. val zonedDateType: ZonedDateTimeJdbcType
    Definition Classes
    JdbcTypes