|
Within the JpaSchemaGenerator, when exporting to the database, we should commit the JDBC transaction.
This is one of those areas where support varies widely from db to db. TCK testing used Derby and it for sure needs this commit to happen, or else we have problems trying to close the Connection later on. For now, just try it in a try/catch block and not even worry about Dialect or JDBC DatabaseMetaData
|