mirror of
https://github.com/ikawrakow/ik_llama.cpp.git
synced 2026-03-05 11:30:09 +00:00
37 lines
893 B
C++
37 lines
893 B
C++
#include <iostream>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <sqlite_modern_cpp.h>
|
|
#include <catch2/catch.hpp>
|
|
using namespace sqlite;
|
|
using namespace std;
|
|
|
|
TEST_CASE("simple examples", "[examples]") {
|
|
database db(":memory:");
|
|
|
|
db << "CREATE TABLE foo (a integer, b string);\n";
|
|
db << "INSERT INTO foo VALUES (?, ?)" << 1 << "hello";
|
|
db << "INSERT INTO foo VALUES (?, ?)" << 2 << "world";
|
|
|
|
string str;
|
|
db << "SELECT b from FOO where a=?;" << 2L >> str;
|
|
|
|
REQUIRE(str == "world");
|
|
|
|
std::string sql("select 1+1");
|
|
long test = 0;
|
|
db << sql >> test;
|
|
|
|
REQUIRE(test == 2);
|
|
|
|
db << "UPDATE foo SET b=? WHERE a=?;" << "hi" << 1L;
|
|
db << "SELECT b FROM foo WHERE a=?;" << 1L >> str;
|
|
|
|
REQUIRE(str == "hi");
|
|
REQUIRE(db.rows_modified() == 1);
|
|
|
|
db << "UPDATE foo SET b=?;" << "hello world";
|
|
|
|
REQUIRE(db.rows_modified() == 2);
|
|
}
|