Skip to content

Commit 61c1da2

Browse files
committed
Add support for binding 64-bit unsigned params.
1 parent 05a1082 commit 61c1da2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/common.ml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@ module Stmt = struct
340340
| `Null -> Bind.null b ~at
341341
| `Int i -> Bind.int b i ~at
342342
| `Int64 i -> Bind.int64 b i ~at
343+
| `UInt64 i -> Bind.int64 ~unsigned:true b i ~at
343344
| `Float x -> Bind.float b x ~at
344345
| `String s -> Bind.string b s ~at
345346
| `Bytes s -> Bind.blob b s ~at

0 commit comments

Comments
 (0)