const std = @import("std");
const lmdb = @cImport(@cInclude("lmdb.h"));
-pub usingnamespace lmdb;
-
pub const Cursor = struct {
const Self = @This();
}
while (try cursor.get(&key, Value, .Next)) |val| {
- std.debug.print("{}: {?}\n", .{ key, val });
+ std.debug.print("{}: {}\n", .{ key, val });
}
}