KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > dql > tableexpression > fromclause > localorschemaqualifiedname


1 package com.daffodilwoods.daffodildb.server.sql99.dql.tableexpression.fromclause;
2
3 import com.daffodilwoods.daffodildb.server.sql99.common.*;
4 import com.daffodilwoods.database.resource.*;
5
6 /**
7  * It represents the qualified name for table. It is used in sequences.
8  * <p>Title: </p>
9  * <p>Description: </p>
10  * <p>Copyright: Copyright (c) 2003</p>
11  * <p>Company: </p>
12  * @author unascribed
13  * @version 1.0
14  */

15
16 public interface localorschemaqualifiedname extends com.daffodilwoods.daffodildb.utils.parser.StatementExecuter {
17
18    /**
19     * Returns the catalog name
20     * @return
21     * @throws com.daffodilwoods.database.resource.DException
22     */

23
24     public String JavaDoc getCatalogName() throws com.daffodilwoods.database.resource.DException;
25
26     /**
27      * Returns the schema name
28      * @return
29      * @throws com.daffodilwoods.database.resource.DException
30      */

31
32     public String JavaDoc getSchemaName() throws com.daffodilwoods.database.resource.DException;
33
34     /**
35      * Returns the table name
36      * @return
37      * @throws com.daffodilwoods.database.resource.DException
38      */

39
40     public String JavaDoc getIdentifierName() throws com.daffodilwoods.database.resource.DException;
41
42     /**
43      * Returns table details.
44      * @return
45      * @throws DException
46      */

47
48     public TableDetails getTableDetails() throws DException ;
49 }
50
Popular Tags