int dt = rs.getInt("DATA_TYPE");
String nullable = rs.getString("IS_NULLABLE");
listRes.append(vf.constructor(column, vf.string(cn), vf.constructor(JDBC.jdbc2rascalType(dt)), nullable.equalsIgnoreCase("YES") ? vf.bool(true) : vf.bool(false)));
}
rs.close();
return vf.constructor(table, tableName, listRes.done());
} else {
throw RuntimeExceptionFactory.illegalArgument(connection, null, null, "Connection does not exist.");
}
} catch (SQLException sqle) {
throw RuntimeExceptionFactory.illegalArgument(connection, null, null, addMessage("Could not close the given connection", sqle));