}
int co = name.lastIndexOf('.');
int to = name.lastIndexOf('.', co - 1);
String cn = name.substring(co + 1);
String tn = name.substring(to + 1, co);
DBRowSet rs = db.getRowSet(tn);
if (rs == null)
{
log.error("Table/View '{}' not found in database!", tn);
return null; // not found
}
Column column = rs.getColumn(cn);
if (column == null)
{
log.error("Column '{}' not found in table/view '{}'!", cn, tn);
return null; // not found
}