mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 14:56:01 +00:00
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
export interface SqlDialect {
|
|
rangeSelect?: boolean;
|
|
limitSelect?: boolean;
|
|
rowNumberOverPaging?: boolean;
|
|
stringEscapeChar: string;
|
|
offsetFetchRangeSyntax?: boolean;
|
|
quoteIdentifier(s: string): string;
|
|
fallbackDataType?: string;
|
|
explicitDropConstraint?: boolean;
|
|
anonymousPrimaryKey?: boolean;
|
|
enableConstraintsPerTable?: boolean;
|
|
nosql?: boolean; // mongo
|
|
}
|