Constructors

Synopses

Declared in <wallet/sqlite.h>

Construct a cursor over all records.

constexpr
explicit
SQLiteCursor() = default;

Construct a cursor limited to a key prefix range.

explicit
SQLiteCursor(
    std::vector<std::byte> start_range,
    std::vector<std::byte> end_range);

Parameters

Name

Description

start_range

Inclusive lower bound of the prefix range.

end_range

Exclusive upper bound of the prefix range.

Created with MrDocs