40
40
import org .hibernate .dialect .Dialect ;
41
41
import org .hibernate .engine .FilterDefinition ;
42
42
import org .hibernate .event .EventListeners ;
43
- import org .hibernate .jdbc .Work ;
44
43
import org .hibernate .tool .hbm2ddl .DatabaseMetadata ;
45
44
import org .hibernate .transaction .JTATransactionFactory ;
46
45
@@ -936,13 +935,10 @@ public void dropDatabaseSchema() throws DataAccessException {
936
935
hibernateTemplate .execute (
937
936
new HibernateCallback <Object >() {
938
937
public Object doInHibernate (Session session ) throws HibernateException , SQLException {
939
- session .doWork (new Work () {
940
- public void execute (Connection connection ) throws SQLException {
941
- Dialect dialect = Dialect .getDialect (getConfiguration ().getProperties ());
942
- String [] sql = getConfiguration ().generateDropSchemaScript (dialect );
943
- executeSchemaScript (connection , sql );
944
- }
945
- });
938
+ Connection con = session .connection ();
939
+ Dialect dialect = Dialect .getDialect (getConfiguration ().getProperties ());
940
+ String [] sql = getConfiguration ().generateDropSchemaScript (dialect );
941
+ executeSchemaScript (con , sql );
946
942
return null ;
947
943
}
948
944
}
@@ -968,13 +964,10 @@ public void createDatabaseSchema() throws DataAccessException {
968
964
hibernateTemplate .execute (
969
965
new HibernateCallback <Object >() {
970
966
public Object doInHibernate (Session session ) throws HibernateException , SQLException {
971
- session .doWork (new Work () {
972
- public void execute (Connection connection ) throws SQLException {
973
- Dialect dialect = Dialect .getDialect (getConfiguration ().getProperties ());
974
- String [] sql = getConfiguration ().generateSchemaCreationScript (dialect );
975
- executeSchemaScript (connection , sql );
976
- }
977
- });
967
+ Connection con = session .connection ();
968
+ Dialect dialect = Dialect .getDialect (getConfiguration ().getProperties ());
969
+ String [] sql = getConfiguration ().generateSchemaCreationScript (dialect );
970
+ executeSchemaScript (con , sql );
978
971
return null ;
979
972
}
980
973
}
@@ -1003,14 +996,11 @@ public void updateDatabaseSchema() throws DataAccessException {
1003
996
hibernateTemplate .execute (
1004
997
new HibernateCallback <Object >() {
1005
998
public Object doInHibernate (Session session ) throws HibernateException , SQLException {
1006
- session .doWork (new Work () {
1007
- public void execute (Connection connection ) throws SQLException {
1008
- Dialect dialect = Dialect .getDialect (getConfiguration ().getProperties ());
1009
- DatabaseMetadata metadata = new DatabaseMetadata (connection , dialect );
1010
- String [] sql = getConfiguration ().generateSchemaUpdateScript (dialect , metadata );
1011
- executeSchemaScript (connection , sql );
1012
- }
1013
- });
999
+ Connection con = session .connection ();
1000
+ Dialect dialect = Dialect .getDialect (getConfiguration ().getProperties ());
1001
+ DatabaseMetadata metadata = new DatabaseMetadata (con , dialect );
1002
+ String [] sql = getConfiguration ().generateSchemaUpdateScript (dialect , metadata );
1003
+ executeSchemaScript (con , sql );
1014
1004
return null ;
1015
1005
}
1016
1006
}
0 commit comments