Class BasicDialectResolver

    • Constructor Detail

      • BasicDialectResolver

        public BasicDialectResolver​(String nameToMatch,
                                    Class dialectClass)
        Constructs a BasicDialectResolver
        Parameters:
        nameToMatch - The name of the driver to match on
        dialectClass - The Dialect class to use on match
      • BasicDialectResolver

        public BasicDialectResolver​(String nameToMatch,
                                    int majorVersionToMatch,
                                    Class dialectClass)
        Constructs a BasicDialectResolver
        Parameters:
        nameToMatch - The name of the driver to match on
        majorVersionToMatch - The version of the driver to match on
        dialectClass - The Dialect class to use on match
      • BasicDialectResolver

        public BasicDialectResolver​(String nameToMatch,
                                    int majorVersionToMatch,
                                    int minorVersionToMatch,
                                    Class dialectClass)
        Constructs a BasicDialectResolver
        Parameters:
        nameToMatch - The name of the driver to match on
        majorVersionToMatch - The version of the driver to match on
        dialectClass - The Dialect class to use on match
    • Method Detail

      • resolveDialect

        public final Dialect resolveDialect​(DialectResolutionInfo info)
        Description copied from interface: DialectResolver
        Determine the Dialect to use based on the given information. Implementations are expected to return the Dialect instance to use, or null if they did not locate a match.
        Specified by:
        resolveDialect in interface DialectResolver
        Parameters:
        info - Access to the information about the database/driver needed to perform the resolution
        Returns:
        The dialect to use, or null.