Files
dbgate/packages/types/dialect.d.ts
2020-03-12 12:46:07 +01:00

8 lines
184 B
TypeScript

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