this.table = table;
this.name = table.getName();
}
public ColumnImpl getColumn(String columnName) {
NdbColumn ndbColumn = table.getColumn(columnName);
if (ndbColumn == null) {
throw new ClusterJUserException(
local.message("ERR_No_Column", table.getName(), columnName));
}
return new ColumnImpl(table, ndbColumn);