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