* The index for the first column is 0, the second is 1, ...
*/
public int getColumnPositionIndex(String colName) {
Integer index = (Integer)nameIndexMap.get(colName.toUpperCase());
if (index == null)
throw new InvalidColumnNameException("There is no column named " + colName + ".");
return index.intValue();
}