Ejemplo n.º 1
0
 /**
  * Constructor.
  *
  * @param table the table to which this column belongs
  * @param colName the column name
  * @param type the data types
  * @see java.sql.DatabaseMetaData#getColumns
  */
 public SQLColumn(SQLTable table, String colName, int type) throws SQLException {
   super(table.getName() + "." + colName, colName, type);
   this.table = table;
 }