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://aws-api.deno.dev/v0.3/services/redshiftdata.ts?docs=full";

The properties (metadata) of a column.

interface ColumnMetadata {
columnDefault?: string | null;
isCaseSensitive?: boolean | null;
isCurrency?: boolean | null;
isSigned?: boolean | null;
label?: string | null;
length?: number | null;
name?: string | null;
nullable?: number | null;
precision?: number | null;
scale?: number | null;
schemaName?: string | null;
tableName?: string | null;
typeName?: string | null;
}

§Properties

§
columnDefault?: string | null
[src]

The default value of the column.

§
isCaseSensitive?: boolean | null
[src]

A value that indicates whether the column is case-sensitive.

§
isCurrency?: boolean | null
[src]

A value that indicates whether the column contains currency values.

§
isSigned?: boolean | null
[src]

A value that indicates whether an integer column is signed.

§
label?: string | null
[src]

The label for the column.

§
length?: number | null
[src]

The length of the column.

§
name?: string | null
[src]

The name of the column.

§
nullable?: number | null
[src]

A value that indicates whether the column is nullable.

§
precision?: number | null
[src]

The precision value of a decimal number column.

§
scale?: number | null
[src]

The scale value of a decimal number column.

§
schemaName?: string | null
[src]

The name of the schema that contains the table that includes the column.

§
tableName?: string | null
[src]

The name of the table that includes the column.

§
typeName?: string | null
[src]

The database-specific data type of the column.