* @param dataType the data type of the column
* @return true if the column was successfully added or false otherwise
*/
protected final DBViewColumn addColumn(String columnName, DataType dataType)
{ // find column by name
return new DBViewColumn(this, columnName, new DBValueExpr(db, null, dataType));
}