コード例 #1
0
 /**
  * Method to do deletes.
  *
  * @param pk ObjectKey that is used DELETE from database.
  * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a
  *     TorqueException.
  */
 public static void doDelete(ObjectKey pk) throws TorqueException {
   BaseTRoleListTypePeer.doDelete(pk, (Connection) null);
 }
コード例 #2
0
 /**
  * Grabs the raw Village records to be formed into objects. This method handles connections
  * internally. The Record objects returned by this method should be considered readonly. Do not
  * alter the data and call save(), your results may vary, but are certainly likely to result in
  * hard to track MT bugs.
  *
  * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a
  *     TorqueException.
  */
 public static List<Record> doSelectVillageRecords(Criteria criteria) throws TorqueException {
   return BaseTRoleListTypePeer.doSelectVillageRecords(criteria, (Connection) null);
 }
コード例 #3
0
 /**
  * Method to do updates.
  *
  * @param criteria object containing data that is used to create the UPDATE statement.
  * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a
  *     TorqueException.
  */
 public static void doUpdate(Criteria criteria) throws TorqueException {
   BaseTRoleListTypePeer.doUpdate(criteria, (Connection) null);
 }
コード例 #4
0
 /**
  * Method to do inserts.
  *
  * @param criteria object used to create the INSERT statement.
  * @throws TorqueException Any exceptions caught during processing will be rethrown wrapped into a
  *     TorqueException.
  */
 public static ObjectKey doInsert(Criteria criteria) throws TorqueException {
   return BaseTRoleListTypePeer.doInsert(criteria, (Connection) null);
 }