FileDocCategorySizeDatePackage
SQLColumn.javaAPI DocExample339Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scripts.SQL

SQLColumn.java

package oisoft.togetherx.scripts.SQL;

import java.util.Enumeration;

public interface SQLColumn {
  SQLTable getTable();
  String getName();
  short getType();
  String getTypeName();
  int getSize();
  int getDecimalDigits();
  boolean isNullAllowed();
  String getRemarks();
  Enumeration getConstraints();
}