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 Parameters

  • Options

Type declaration

  • dataTypeOverrides: Record<string, Class<ABSTRACT<any>>>
  • dataTypesDocumentationUrl: string
  • identifierDelimiter: string | {
        end: string;
        start: string;
    }

    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 and end properties.

  • minimumDatabaseVersion: string
  • name: DialectName
  • options: Options | undefined
  • sequelize: Sequelize