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