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