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 Dec 11, 2024
1 parent 3be06fb commit 3c0e7f4
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 3c0e7f4

Please sign in to comment.