当前位置: 首页>>代码示例>>Java>>正文


Java Session.doWork方法代码示例

本文整理汇总了Java中org.hibernate.Session.doWork方法的典型用法代码示例。如果您正苦于以下问题:Java Session.doWork方法的具体用法?Java Session.doWork怎么用?Java Session.doWork使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.hibernate.Session的用法示例。


在下文中一共展示了Session.doWork方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addBatch

import org.hibernate.Session; //导入方法依赖的package包/类
@SneakyThrows
private void addBatch() {
	final String query = "select nextval('" + name + "') from generate_series(1, " + batchSize + ")";

	final Session session = EM.em().unwrap(Session.class);
	session.doWork(connection -> {
		try (final PreparedStatement stmt = connection.prepareStatement(query)) {
			try (final ResultSet rs = stmt.executeQuery()) {
				while (rs.next()) {
					final long value = rs.getLong(1);
					pending.add(value);
				}
			}
		}
	});
}
 
开发者ID:stickfigure,项目名称:postguice,代码行数:17,代码来源:Sequence.java

示例2: initializeDatabase

import org.hibernate.Session; //导入方法依赖的package包/类
@Before
public void initializeDatabase() {
	Session session = entityManager.unwrap(Session.class);
	session.doWork(new Work() {
		
		@Override
		public void execute(Connection connection) throws SQLException {
			try {
				File script = new File(getClass().getResource("/data.sql").getFile());
				RunScript.execute(connection, new FileReader(script));
			} catch (FileNotFoundException e) {
				e.printStackTrace();
				throw new RuntimeException("Database initialize script error");
			}
		}
	});
}
 
开发者ID:joaquimsn,项目名称:query-search,代码行数:18,代码来源:BaseJpaTest.java

示例3: getColumnNameToIndexMap

import org.hibernate.Session; //导入方法依赖的package包/类
public static Map<String, Integer> getColumnNameToIndexMap(final String queryString, final EntityManager em) throws SQLException {

        final Session session = em.unwrap(Session.class); // ATTENTION! This is Hibernate-specific!
        final AtomicReference<ResultSetMetaData> msRef = new AtomicReference<>();
        session.doWork((c) -> {
            try (final PreparedStatement statement = create(c, queryString)) {
                // I'm not setting parameters here, because I just want to find out about the return values' column names
                msRef.set(statement.getMetaData());
            }
        });
        final ResultSetMetaData metaData = msRef.get();
        // LinkedHashmap preserves order of insertion:
        final Map<String, Integer> columnNameToColumnIndex = new LinkedHashMap<>();
        for (int t = 0; t < metaData.getColumnCount(); ++t) {
            // important, first index in the metadata is "1", the first index for the result array must be "0"
            columnNameToColumnIndex.put(metaData.getColumnName(t + 1), t);
        }
        return columnNameToColumnIndex;
    }
 
开发者ID:napstr,项目名称:SqlSauce,代码行数:20,代码来源:DbUtils.java


注:本文中的org.hibernate.Session.doWork方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。