FileDocCategorySizeDatePackage
SQLModel.javaAPI DocExample414Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scripts.SQL

SQLModel.java

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();
}