Type alias AbstractDialectParams<Options>
AbstractDialectParams<Options>: { dataTypeOverrides: Record<string, Class<ABSTRACT<any>>>; dataTypesDocumentationUrl: string; identifierDelimiter: string | { end: string; start: string; }; minimumDatabaseVersion: string; name: DialectName; options: Options | undefined; sequelize: Sequelize; } Type declaration
dataTypeOverrides: Record<string, Class<ABSTRACT<any>>>
dataTypesDocumentationUrl: string
identifierDelimiter: string | {
end: string;
start: string;
}
minimumDatabaseVersion: string
options: Options | undefined
The character used to delimit identifiers in SQL queries.
This can be a string, in which case the character will be used for both the start & end of the identifier, or an object with
start
andend
properties.