/**
  * Perform JDBC related task using the {@link Connection} managed by the current {@link
  * EntityManager}.
  *
  * @param task The task to be performed
  * @throws PersistenceException Generally indicates wrapped {@link SQLException}
  */
 protected void jdbcTask(JDBCTask task) {
   JPA.jdbcWork(task);
 }