···4343 > Eio_main.run @@ fun env ->
4444 > let cwd = Eio.Stdenv.cwd env in
4545 > let db = Sqlite.create Eio.Path.(cwd / "cli_test.db") in
4646- > (match Sqlite.get db "hello" with
4646+ > (match Sqlite.find db "hello" with
4747 > | Some v -> Printf.printf "hello = %s\n" v
4848 > | None -> print_endline "hello not found");
4949- > (match Sqlite.get db "test" with
4949+ > (match Sqlite.find db "test" with
5050 > | Some v -> Printf.printf "test = %s\n" v
5151 > | None -> print_endline "test not found");
5252 > Sqlite.close db