package oisoft.togetherx.scripts.SQL;
import java.util.Enumeration;
public interface SQLModel{
/**
@return Enumeration of Strings -- catalog names
*/
Enumeration getCatalogs();
/**
@return Enumeration of Strings -- schema names
*/
Enumeration getSchemas();
/**
@return Enumeration of Tables in this model
*/
Enumeration getTables();
boolean checkConsistency();
}
|