/** @see Dao#mapSelectStarRow(DatabaseResults) */
 public T mapSelectStarRow(DatabaseResults results) {
   try {
     return dao.mapSelectStarRow(results);
   } catch (SQLException e) {
     logMessage(e, "mapSelectStarRow threw exception on results");
     throw new RuntimeException(e);
   }
 }