Interface SQLSchema

Database original schema

三段式数据库命名 catalog.schema.table

interface SQLSchema {
    catalog?: string;
    schema?: string;
    tables?: SQLTableSchema[];
}

Properties

catalog?: string
schema?: string
tables?: SQLTableSchema[]

Generated using TypeDoc