SystemType

data class SystemType(val typeName: String? = null, val typeCode: Int, val precision: Int? = null, val scale: Int? = null) : SourceDatabaseType

SystemType models types defined by the source database itself, i.e. no UDTs.

Constructors

Link copied to clipboard
constructor(typeName: String? = null, typeCode: Int, precision: Int? = null, scale: Int? = null)

Properties

Link copied to clipboard
open override val catalog: String?
Link copied to clipboard
open val jdbcType: JDBCType?
Link copied to clipboard
val precision: Int? = null
Link copied to clipboard
val scale: Int? = null
Link copied to clipboard
open override val schema: String?
Link copied to clipboard
open override val typeCode: Int
Link copied to clipboard
open override val typeName: String? = null