Files
dbgate/packages/types/dialect.d.ts
Jan Prochazka d5118909d1 sql generator
2021-03-28 18:38:45 +02:00

12 lines
321 B
TypeScript

export interface SqlDialect {
rangeSelect?: boolean;
limitSelect?: boolean;
stringEscapeChar: string;
offsetFetchRangeSyntax?: boolean;
quoteIdentifier(s: string): string;
fallbackDataType?: string;
explicitDropConstraint?: boolean;
anonymousPrimaryKey?: boolean;
enableConstraintsPerTable?: boolean;
}