KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > serversystem > _SingleTableRetrievalSystem


1 package com.daffodilwoods.daffodildb.server.serversystem;
2
3 import com.daffodilwoods.database.general.*;
4 import com.daffodilwoods.database.resource.*;
5 import com.daffodilwoods.daffodildb.server.datadictionarysystem.*;
6 import com.daffodilwoods.database.sqlinitiator.*;
7 import java.util.TimeZone JavaDoc;
8 import java.sql.*;
9 public interface _SingleTableRetrievalSystem {
10   Object JavaDoc getSessionId() throws DException;
11   _ColumnCharacteristics getColumnCharacteristics(String JavaDoc tableName) throws DException;
12   String JavaDoc[] getSuitableIndex( String JavaDoc tableName, String JavaDoc[] columns) throws DException;
13   String JavaDoc getDatabaseURL() throws DException;
14   String JavaDoc getCurrentUser() throws DException;
15   String JavaDoc getCurrentRole() throws DException;
16   public Timestamp getTimeStamp() throws DException;
17   public Date getDate() throws DException;
18   public Time getTime() throws DException;
19   public TimeZone JavaDoc getTimeZone() throws DException;
20 }
21
Popular Tags