Skip to content

Commit

Permalink
Enable call to PreparedStatement's cancel
Browse files Browse the repository at this point in the history
Signed-off-by: Bagus Nurtomo <bagus.nurtomo@pm.me>
  • Loading branch information
BagusThanatos committed Jan 9, 2025
1 parent a7bc1dd commit 8f4f103
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@
(setLong [index val] (.setLong stmt index val))
(setFloat [index val] (.setFloat stmt index val))
(setDouble [index val] (.setDouble stmt index val))
(close [] (.close stmt)))]
(close [] (.close stmt))
(cancel [] (.cancel stmt)))]
(sql-jdbc.execute/set-parameters! driver ps params)
ps))

Expand Down

0 comments on commit 8f4f103

Please sign in to comment.