Skip to content

Commit

Permalink
fix: bug in reception
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Jul 24, 2024
1 parent fed1baa commit d343e69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void execQueryRegisterFiles(FilesDescriber archiveContent) throws ArcExce
if (requete.getParameters().size()>FormatSQL.MAXIMUM_NUMBER_OF_BIND_IN_PREPARED_STATEMENT)
{
requete.build(SQL.END_QUERY, SQL.COMMIT, SQL.END_QUERY);
UtilitaireDao.get(0).executeRequest(this.sandbox.getConnection(), requete);
UtilitaireDao.get(0).executeImmediate(this.sandbox.getConnection(), requete);
requete = new ArcPreparedStatementBuilder();
}

Expand All @@ -108,7 +108,7 @@ public void execQueryRegisterFiles(FilesDescriber archiveContent) throws ArcExce

queryUpdateArchiveWithoutFileName(requete);

UtilitaireDao.get(0).executeRequest(this.sandbox.getConnection(), requete);
UtilitaireDao.get(0).executeImmediate(this.sandbox.getConnection(), requete);

}

Expand Down

0 comments on commit d343e69

Please sign in to comment.