类 Namespace


  • public class Namespace
    extends Object
    Represents a namespace (named schema/catalog pair) with a Database and manages objects defined within.
    作者:
    Steve Ebersole
    • 方法详细资料

      • locateTable

        public Table locateTable​(Identifier logicalTableName)
        Returns the table with the specified logical table name.
        参数:
        logicalTableName - - the logical name of the table
        返回:
        the table with the specified table name, or null if there is no table with the specified table name.
      • createTable

        public Table createTable​(Identifier logicalTableName,
                                 boolean isAbstract)
        Creates a mapping Table instance.
        参数:
        logicalTableName - The logical table name
        返回:
        the created table.
      • createSequence

        public Sequence createSequence​(Identifier logicalName,
                                       int initialValue,
                                       int increment)
      • hashCode

        public int hashCode()
        覆盖:
        hashCode 在类中 Object