1 package jimm.datavision.source.sql; 2 import jimm.datavision.source.Table; 3 import jimm.datavision.source.Column; 4 import java.sql.*; 5 6 13 public class SQLColumn extends Column { 14 15 protected SQLTable table; 16 17 25 public SQLColumn(SQLTable table, String colName, int type) 26 throws SQLException 27 { 28 super(table.getName() + "." + colName, colName, type); 29 this.table = table; 30 } 31 32 37 public Table getTable() { return table; } 38 39 } 40 | Popular Tags |