PostgresqlColumnResponse

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

PostgreSQL Column.

Constructors

Link copied to clipboard
constructor(column: String, dataType: 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 PostgreSQL data type.

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.