mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 11:26:00 +00:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
export interface SqlDialect {
|
|
rangeSelect?: boolean;
|
|
limitSelect?: boolean;
|
|
stringEscapeChar: string;
|
|
offsetFetchRangeSyntax?: boolean;
|
|
quoteIdentifier(s: string): string;
|
|
}
|