Ejemplo n.º 1
0
 /**
  * Do a Prepared Statement select according to the given criteria
  *
  * @param criteria
  * @return a List of Record objects.
  * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a
  *     TorqueException.
  * @see org.apache.torque.util.BasePeer#doPSSelect(Criteria)
  */
 public static List<Record> doPSSelect(Criteria criteria) throws TorqueException {
   return BasePeer.doPSSelect(criteria);
 }