Base

data class Base(val oid: Int, val name: String, val schema: String) : PgType

Represents a standard PostgreSQL base type (e.g., int4, text, varchar).

Constructors

Link copied to clipboard
constructor(oid: Int, name: String, schema: String)

Properties

Link copied to clipboard
open override val name: String

The name of the type.

Link copied to clipboard
open override val oid: Int

The Object Identifier (OID) of the type.

Link copied to clipboard
open override val schema: String

The schema in which the type is defined.