public String getColumnTypeName(int paramInt) throws SQLException {
String res = "";
try {
OCQueryResultColumn col = columnCollection.getColumn(paramInt - 1);
OCType[] types = col.getValueType().getNotNullTypes();
res = OCType.typesToSQLTypeName(types);
} catch (JIException e) {
throw new SQLException(e);
}
return res;