String qq_SQL = "select * from Customer " +
"where CustomerName = ? ";
Object[] qq_SQLParams = new Object[] {pName };
// TODO [112,Info]: Using the * in a query rather than explicitly enumerating the column list is often inefficient.
JdbcTemplate qq_Template = dBConnection.getTemplate();
List qq_List = qq_Template.query(qq_SQL, qq_SQLParams, new BeanRowMapper(aCustomer, Customer.class));
if (!qq_List.isEmpty()) {
aCustomer = (Customer)DataAccessUtils.singleResult(qq_List);
}
qq_RowCount = qq_List.size();
recsReturned = qq_RowCount;