public void store_5()
{
// No transaction. Make sure StoreConnection.release cleans up OK.
StoreConnection sConn = getStoreConnection() ;
Location loc = sConn.getLocation() ;
DatasetGraph dsg = sConn.getBaseDataset() ;
dsg.add(q) ;
assertTrue(dsg.contains(q)) ;
StoreConnection.release(loc) ;
sConn = StoreConnection.make(loc) ;
dsg = sConn.getBaseDataset() ;
assertTrue(dsg.contains(q)) ;
}