tx.begin();
for (int i = 0; i < articleCount; i++)
{
Object[] pks = {new Integer(offsetId + i)};
Identity oid = new Identity(PerformanceArticle.class, PerformanceArticle.class,pks);
PerformanceArticle a = (PerformanceArticle) _conn.getObjectByIdentity(oid, LockType.NO_LOCK);
}
tx.commit();
long stop = System.currentTimeMillis();
logger.info("querying " + articleCount + " Objects: " + (stop - start) + " msec");
}