java returning_Java ReturningWork类代码示例

import org.hibernate.jdbc.ReturningWork; //导入依赖的package包/类

private void clearDatabase() throws SQLException

{

CommitCounter.versionedThing.get().reset();

EntityManager em = getEntityManager();

em.clear();

EntityTransaction transaction = em.getTransaction();

if (!transaction.isActive())

{

transaction.begin();

}

final Connection c;

if (concreteJpaProviderTestModuleClass == HibernateJpaTestModule.class)

{

// Hibernate cannot unwrap JDBC connection directly

c = em.unwrap(Session.class).doReturningWork(new ReturningWork()

{

@Override

public Connection execute(Connection connection) throws SQLException

{

return connection;

}

});

}

else

{

c = em.unwrap(Connection.class);

}

Statement s = c.createStatement();

s.execute("SET REFERENTIAL_INTEGRITY FALSE");

Set tables = new HashSet();

ResultSet rs = s.executeQuery("select table_name " + "from INFORMATION_SCHEMA.tables "

+ "where table_type='TABLE' and table_schema='PUBLIC'");

while (rs.next())

{

// if we don't skip over the sequence table, we'll start getting "The sequence table information is not complete"

// exceptions

if (!rs.getString(1).startsWith("DUAL_") && !rs.getString(1).equals("SEQUENCE"))

{

tables.add(rs.getString(1));

}

}

rs.close();

for (String table : tables)

{

s.executeUpdate("DELETE FROM " + table);

}

transaction.commit();

s.execute("SET REFERENTIAL_INTEGRITY TRUE");

s.close();

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值