blob: 4a05afe7e5a9d0b0ac1625f86752a3b22b0a1184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//
// Copyright (c) 2022 Klemens Morgenstern (klemens.morgenstern@gmx.net)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/sqlite/extension.hpp>
#include <boost/sqlite/function.hpp>
BOOST_SQLITE_EXTENSION(simplescalar, conn)
{
create_scalar_function(
conn, "assert",
[](boost::sqlite::context<>, boost::span<boost::sqlite::value, 1u> sp)
{
if (sp.front().get_int() == 0)
throw std::logic_error("test failed");
});
create_scalar_function(
conn, "my_add",
[](boost::sqlite::context<>, boost::span<boost::sqlite::value, 2u> sp)-> sqlite3_int64
{
return sp[0].get_int() + sp[1].get_int();
});
}
|