Constructors
Declared in <wallet/sqlite.h>
Construct a cursor over all records.
constexpr
explicit
SQLiteCursor() = default;
» more...
Construct a cursor limited to a key prefix range.
explicit
SQLiteCursor(
std::vector<std::byte> start_range,
std::vector<std::byte> end_range);
» more...
| Name | Description |
|---|---|
| start_range | Inclusive lower bound of the prefix range. |
| end_range | Exclusive upper bound of the prefix range. |