KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > dql > listenerevents > _FunctionalMapping


1 package com.daffodilwoods.daffodildb.server.sql99.dql.listenerevents;
2
3 import com.daffodilwoods.daffodildb.server.sql99.dql.queryexpression.*;
4
5 /**
6  * It allows the user to get the functional columns as well as the medium to
7  * retrieve the values of those columns.
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 import com.daffodilwoods.database.resource.DException;
17 public interface _FunctionalMapping {
18
19    /**
20     * It is used to create a row at the top level of the query. Row creation
21     * is required for insertion, updation and deletion through resultset.
22     * @return arrays of functional col and top level query iterator
23     * @usage ViewIterator
24     * @throws DException
25     */

26
27    public Object JavaDoc[] getFunctionalColumnIteratorMapping() throws DException;
28 }
29
Popular Tags