|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 10/27/2009 at 04:37AM PDT, ID: 24846817 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
<sql-query name="updateINFO">
update
info
set
status_id = 2
where
pid = (:in)
</sql-query>
for(int i=0; i<list.size(); i++)
{
Query query = session.getNamedQuery("updateINFO").setParameter("in", list.get(i));
}
List<Long> list = null;
Query query = session.getNamedQuery("endDateChecker");
list = query.list();
|
Advertisement