类 JDataStoreDialect

  • 所有已实现的接口:
    ConversionContext

    public class JDataStoreDialect
    extends Dialect
    A Dialect for JDataStore.
    作者:
    Vishy Kasar
    • 构造器详细资料

      • JDataStoreDialect

        public JDataStoreDialect()
        Creates new JDataStoreDialect
    • 方法详细资料

      • getAddColumnString

        public String getAddColumnString()
        从类复制的说明: Dialect
        The syntax used to add a column to a table (optional).
        覆盖:
        getAddColumnString 在类中 Dialect
        返回:
        The "add column" fragment.
      • dropConstraints

        public boolean dropConstraints()
        从类复制的说明: Dialect
        Do we need to drop constraints before dropping tables in this dialect?
        覆盖:
        dropConstraints 在类中 Dialect
        返回:
        True if constraints must be dropped prior to dropping the table; false otherwise.
      • getNoColumnsInsertString

        public String getNoColumnsInsertString()
        从类复制的说明: Dialect
        The fragment used to insert a row without specifying any column values. This is not possible on some databases.
        覆盖:
        getNoColumnsInsertString 在类中 Dialect
        返回:
        The appropriate empty values clause.
      • supportsColumnCheck

        public boolean supportsColumnCheck()
        从类复制的说明: Dialect
        Does this dialect support column-level check constraints?
        覆盖:
        supportsColumnCheck 在类中 Dialect
        返回:
        True if column-level CHECK constraints are supported; false otherwise.
      • supportsTableCheck

        public boolean supportsTableCheck()
        从类复制的说明: Dialect
        Does this dialect support table-level check constraints?
        覆盖:
        supportsTableCheck 在类中 Dialect
        返回:
        True if table-level CHECK constraints are supported; false otherwise.