Member Junction
    Preparing search index...

    Type Alias SQLBaseType

    SQLBaseType:
        | "int"
        | "bigint"
        | "smallint"
        | "tinyint"
        | "decimal"
        | "numeric"
        | "float"
        | "real"
        | "money"
        | "smallmoney"
        | "nvarchar"
        | "varchar"
        | "char"
        | "nchar"
        | "text"
        | "ntext"
        | "bit"
        | "uniqueidentifier"
        | "datetime"
        | "datetime2"
        | "datetimeoffset"
        | "date"
        | "time"
        | "smalldatetime"
        | "varbinary"
        | "binary"
        | "image"
        | "xml"
        | "json"
        | "geography"
        | "geometry"
        | "sql_variant"

    The canonical set of SQL base types MJ recognizes. Used for column typing, formatting decisions, and alignment. Platform-specific mappings live in the SQLDialect package.