Documentation
    Preparing search index...

    Interface ColumnMetadata

    The subset of the mariadb driver's ColumnDefinition that we rely on. The driver does not expose the type in its own typings.

    interface ColumnMetadata {
        isDataTypeFormatJson(): boolean;
        name(): string;
        orgName(): string;
        orgTable(): string;
    }
    Index
    • Whether the server reported the column's extended type as json.

      Returns boolean