Packages

class JdbcTypes extends HsqldbProfile.JdbcTypes

Source
HsqldbProfile.scala
Linear Supertypes
HsqldbProfile.JdbcTypes, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JdbcTypes
  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 JdbcTypes()

Type Members

  1. 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.

  2. class InstantJdbcType extends JdbcTypes.InstantJdbcType with HsqldbTimeJdbcTypeWithOffset
  3. class OffsetDateTimeJdbcType extends JdbcTypes.OffsetDateTimeJdbcType with HsqldbTimeJdbcTypeWithOffset
  4. class OffsetTimeJdbcType extends JdbcTypes.OffsetTimeJdbcType with HsqldbTimeJdbcTypeWithOffset
  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 OffsetTime or LocalDateTime or LocalDate or Instant instead.

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

    Definition Classes
    JdbcTypes
  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 IntJdbcType extends JdbcProfile.DriverJdbcType[Int] with NumericTypedType
    Definition Classes
    JdbcTypes
  16. class LocalDateJdbcType extends JdbcProfile.DriverJdbcType[LocalDate]
    Definition Classes
    JdbcTypes
  17. class LocalDateTimeJdbcType extends JdbcProfile.DriverJdbcType[LocalDateTime]
    Definition Classes
    JdbcTypes
  18. class LocalTimeJdbcType extends JdbcProfile.DriverJdbcType[LocalTime]
    Definition Classes
    JdbcTypes
  19. class LongJdbcType extends JdbcProfile.DriverJdbcType[Long] with NumericTypedType
    Definition Classes
    JdbcTypes
  20. class NullJdbcType extends JdbcProfile.DriverJdbcType[Null]
    Definition Classes
    JdbcTypes
  21. class ShortJdbcType extends JdbcProfile.DriverJdbcType[Short] with NumericTypedType
    Definition Classes
    JdbcTypes
  22. class StringJdbcType extends JdbcProfile.DriverJdbcType[String]
    Definition Classes
    JdbcTypes
  23. class TimeJdbcType extends JdbcProfile.DriverJdbcType[Time]
    Definition Classes
    JdbcTypes
  24. class TimestampJdbcType extends JdbcProfile.DriverJdbcType[Timestamp]
    Definition Classes
    JdbcTypes
  25. class UUIDJdbcType extends JdbcProfile.DriverJdbcType[UUID]
    Definition Classes
    JdbcTypes
  26. 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
    JdbcTypesJdbcTypes
  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: InstantJdbcType
    Definition Classes
    JdbcTypesJdbcTypes
  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
    JdbcTypesJdbcTypes
  16. val longJdbcType: LongJdbcType
    Definition Classes
    JdbcTypes
  17. val nullJdbcType: NullJdbcType
    Definition Classes
    JdbcTypes
  18. val offsetDateTimeType: OffsetDateTimeJdbcType
    Definition Classes
    JdbcTypesJdbcTypes
  19. val offsetTimeType: OffsetTimeJdbcType
    Definition Classes
    JdbcTypesJdbcTypes
  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
    JdbcTypesJdbcTypes
  25. val zonedDateType: ZonedDateTimeJdbcType
    Definition Classes
    JdbcTypes