Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ColumnMetadata

import type { ColumnMetadata } from "https://raw.githubusercontent.com/jakajancar/pgc4d/master/src/mod.ts";
interface ColumnMetadata {
name: string;
tableOid: number;
typeMod: number;
typeOid: number;
typeSize: number;
}

§Properties

§
name: string
[src]

The field name.

§
tableOid: number
[src]

If the field can be identified as a column of a specific table, the object ID of the table; otherwise zero.

§
typeMod: number
[src]

The type modifier (see pg_attribute.atttypmod). The meaning of the modifier is type-specific.

§
typeOid: number
[src]

The object ID of the field's data type.

§
typeSize: number
[src]

The data type size (see pg_type.typlen). Note that negative values denote variable-width types.