
11 Sep
2025
11 Sep
'25
1:22 p.m.
On Thu, Sep 11, 2025 at 2:25 PM Klemens Morgenstern via Boost <boost@lists.boost.org> wrote:
auto q = conn.prepare("select 42"); for (auto res : sqlite::statement_range<std::tuple<int>>(q));
Would it be possible to have begin() and end() on the statement by default? That way, the following would work: for (auto row : conn.query("select * from ...")); Also, I see that the connection::query has been removed. What was the reason for that?