mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 09:05:59 +00:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
export interface SqlDialect {
|
|
rangeSelect?: boolean;
|
|
limitSelect?: boolean;
|
|
ilike?: boolean;
|
|
rowNumberOverPaging?: boolean;
|
|
stringEscapeChar: string;
|
|
offsetFetchRangeSyntax?: boolean;
|
|
quoteIdentifier(s: string): string;
|
|
fallbackDataType?: string;
|
|
explicitDropConstraint?: boolean;
|
|
anonymousPrimaryKey?: boolean;
|
|
defaultSchemaName?: string;
|
|
enableConstraintsPerTable?: boolean;
|
|
requireStandaloneSelectForScopeIdentity?: boolean;
|
|
allowMultipleValuesInsert?: boolean;
|
|
|
|
dropColumnDependencies?: string[];
|
|
changeColumnDependencies?: string[];
|
|
|
|
dropIndexContainsTableSpec?: boolean;
|
|
|
|
createColumn?: boolean;
|
|
dropColumn?: boolean;
|
|
changeColumn?: boolean;
|
|
createIndex?: boolean;
|
|
dropIndex?: boolean;
|
|
createForeignKey?: boolean;
|
|
dropForeignKey?: boolean;
|
|
createPrimaryKey?: boolean;
|
|
dropPrimaryKey?: boolean;
|
|
createUnique?: boolean;
|
|
dropUnique?: boolean;
|
|
createCheck?: boolean;
|
|
dropCheck?: boolean;
|
|
|
|
dropReferencesWhenDropTable?: boolean;
|
|
|
|
predefinedDataTypes: string[];
|
|
|
|
// create sql-tree expression
|
|
createColumnViewExpression(columnName: string, dataType: string, source: { alias: string }, alias?: string): any;
|
|
}
|