Skip to content

Commit

Permalink
basic support for azuresql
Browse files Browse the repository at this point in the history
  • Loading branch information
llsand committed Mar 13, 2023
1 parent f1e8c2c commit 979e9f6
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public void createOrcasUpdatesTable(String pOrcasUpdatesTableName, CallableState

@Override
public void insertIntoOrcasUpdatesTable(String pOrcasUpdatesTableName, CallableStatementProvider pOrcasCallableStatementProvider, String pFilePart, String pLogname) {
new WrapperExecutePreparedStatement("begin transaction", pOrcasCallableStatementProvider).execute();
String lSql = "" + //
" insert into " + pOrcasUpdatesTableName + "(" + //
" scup_script_name," + //
Expand All @@ -35,7 +34,6 @@ public void insertIntoOrcasUpdatesTable(String pOrcasUpdatesTableName, CallableS
lInsertParameters.add(pFilePart);
lInsertParameters.add(pLogname);
new WrapperExecutePreparedStatement(lSql, pOrcasCallableStatementProvider, lInsertParameters).execute();
new WrapperExecutePreparedStatement("commit", pOrcasCallableStatementProvider).execute();
}

@Override
Expand Down

0 comments on commit 979e9f6

Please sign in to comment.