@qualithm/arrow-flight-sql-js - v0.4.3
    Preparing search index...

    Type Alias XdbcTypeInfo

    XDBC Type Info - data type information supported by the server

    type XdbcTypeInfo = {
        autoIncrement?: boolean;
        caseSensitive: boolean;
        columnSize?: number;
        createParams?: string[];
        dataType: number;
        datetimeSubcode?: number;
        fixedPrecScale: boolean;
        intervalPrecision?: number;
        literalPrefix?: string;
        literalSuffix?: string;
        localTypeName?: string;
        maximumScale?: number;
        minimumScale?: number;
        nullable: number;
        numPrecRadix?: number;
        searchable: number;
        sqlDataType: number;
        typeName: string;
        unsignedAttribute?: boolean;
    }
    Index

    Properties

    autoIncrement?: boolean

    Whether the type is auto-increment (null if not applicable)

    caseSensitive: boolean

    Whether the type is case-sensitive

    columnSize?: number

    Maximum column size (precision for numeric, length for strings)

    createParams?: string[]

    Parameters for creating a column of this type

    dataType: number

    The SQL data type code

    datetimeSubcode?: number

    Datetime subcode (for interval/datetime types)

    fixedPrecScale: boolean

    Whether the type has fixed precision and scale

    intervalPrecision?: number

    Interval leading precision (null if not applicable)

    literalPrefix?: string

    Character(s) used to prefix a literal

    literalSuffix?: string

    Character(s) used to terminate a literal

    localTypeName?: string

    Localized type name

    maximumScale?: number

    Maximum scale (null if not applicable)

    minimumScale?: number

    Minimum scale (null if not applicable)

    nullable: number

    Nullability (0=no, 1=yes, 2=unknown)

    numPrecRadix?: number

    Numeric precision radix (2 or 10, null if not applicable)

    searchable: number

    Searchability (0=none, 1=char, 2=basic, 3=full)

    sqlDataType: number

    SQL data type value

    typeName: string

    The name of the data type (e.g., VARCHAR, INTEGER)

    unsignedAttribute?: boolean

    Whether the type is unsigned (null if not applicable)