Skip to content

Commit

Permalink
Merge pull request #7 from umjammer/0.0.7
Browse files Browse the repository at this point in the history
0.0.7
  • Loading branch information
umjammer authored May 30, 2024
2 parents 4e6fa97 + 7c305a8 commit 99de9fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>vavi</groupId>
<artifactId>vavi-sql-mdb</artifactId>
<version>0.0.6</version>
<version>0.0.7</version>

<name>Vavi SQL MDB API</name>
<organization>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/vavi/sql/EngineBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public boolean execute(String sql) throws IOException {
public boolean execute(String sql, Map<Integer, Object> params) throws IOException {
this.params = params;

executeInternal(sql);
executeInternal(sql, params);

// rpn
Deque<EngineBase.Phrase> stack = new ArrayDeque<>();
Expand Down
1 change: 1 addition & 0 deletions src/test/java/vavi/apps/mdbtools/MdbFileTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ void test2() throws Exception {
}
}));
}

//----

/** */
Expand Down

0 comments on commit 99de9fe

Please sign in to comment.