KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datadictionarysystem > _ViewCharacteristics


1 package com.daffodilwoods.daffodildb.server.datadictionarysystem;
2 import com.daffodilwoods.database.resource.DException;
3 public interface _ViewCharacteristics {
4   String JavaDoc getViewQuery()throws DException;
5   String JavaDoc[] getViewColumns()throws DException;
6   boolean isUpdatable()throws DException;
7   boolean isInsertableInto()throws DException;
8 }
9
Popular Tags