_db.begin();
// Find the first object and remove it
//object = (TestKeyGenObject) _db.load( objClass, object.getId() );
oql = _db.getOQLQuery();
oql.create("SELECT object FROM " + objClass.getName()
+ " object WHERE id = $1");
oql.bind(object.getId());
enumeration = oql.execute();
LOG.debug("Removing first object: " + object);
if (enumeration.hasMore()) {