{
String bindingName = "testBind_" + System.currentTimeMillis();
TransactionImpl tx = (TransactionImpl) odmg.newTransaction();
//bind object to name
tx.begin();
Article example = createArticle();
database.makePersistent(example);
tx.commit();
tx.begin();
try
{
database.bind(example, bindingName);
Article value = (Article) database.lookup(bindingName);
assertTrue("Could not lookup object for binding name: "+bindingName, value != null);
tx.commit();
}
catch (ObjectNameNotFoundException ex)
{