OracleColumnResponse

data class OracleColumnResponse(val column: String, val dataType: String, val encoding: String, val length: Int, val nullable: Boolean, val ordinalPosition: Int, val precision: Int, val primaryKey: Boolean, val scale: Int)

Oracle Column.

Constructors

Link copied to clipboard
fun OracleColumnResponse(column: String, dataType: String, encoding: String, length: Int, nullable: Boolean, ordinalPosition: Int, precision: Int, primaryKey: Boolean, scale: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Column name.

Link copied to clipboard

The Oracle data type.

Link copied to clipboard

Column encoding.

Link copied to clipboard
val length: Int

Column length.

Link copied to clipboard

Whether or not the column can accept a null value.

Link copied to clipboard

The ordinal position of the column in the table.

Link copied to clipboard

Column precision.

Link copied to clipboard

Whether or not the column represents a primary key.

Link copied to clipboard
val scale: Int

Column scale.