- indexing
- title: "Query for catalog of tables"
- project: "Visual Eiffel"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: dale
class TABLES_CATALOG_QUERY
- inherit
-
CATALOG_QUERY
- end
- creation
- make
- feature -- Attributes:
-
qualifier: STRING
-
owner: STRING
-
name: STRING
-
table_type: STRING
- feature -- Command:
-
make (db: DATABASE)
-
-
-- creation procedure
-
- require
-
valid_database:
db /= void and then db.is_connected
- feature -- Settings:
-
set_qualifier (s: STRING)
-
-
-- ...
-
set_owner (s: STRING)
-
-
-- ...
-
set_name (s: STRING)
-
-
-- ...
-
set_table_type (s: STRING)
-
-
--
end -- class TABLES_CATALOG_QUERY