Files
dbgate/packages/types/dialect.d.ts
2020-06-11 13:58:34 +02:00

9 lines
213 B
TypeScript

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