replace hsql with h2

This commit is contained in:
Loredana Crusoveanu
2018-04-15 09:21:07 +03:00
parent 02f29a95bd
commit 78912c3d3b
2 changed files with 5 additions and 6 deletions

View File

@@ -13,8 +13,8 @@ public class BatchProcessing {
public void getConnection(){
try {
Class.forName("org.hsqldb.jdbcDriver");
connection = DriverManager.getConnection("jdbc:hsqldb:file:C:\\EMPLOYEEDB", "SA", "");
Class.forName("org.h2.Driver");
connection = DriverManager.getConnection("jdbc:h2:file:C:\\EMPLOYEEDB", "SA", "");
connection.setAutoCommit(false);
} catch (Exception e) {
e.printStackTrace(System.out);