我正在尝试删除数据库中的对象。
我的第一次尝试是:
public void removeAll(){
TypedQuery<anObject> query = em.createQuery(
"DELETE FROM tablName",
anObject.class);
query.executeUpdate();
}
这给了我一个例外,所以我查看了被反对网站上的示例并更新了我的代码以类似于他们的代码:
public int removeAll(){
int deleted = em.createQuery(
"DELETE FROM tableName").executeUpdate();
}
我得到了同样的例外:
com.objectdb.o._TransactionRequiredException: Attempt to run update query when no transaction is active
有谁知道我能做些什么来解决?