"from Holding " +
"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();
aCustomersHoldingList = (Array_Of_Holding)qq_Template.query(qq_SQL, qq_SQLParams, new ArrayRowMapper(aCustomersHoldingList, Array_Of_Holding.class));
return aCustomersHoldingList;
}