blob progress

This commit is contained in:
Sascha Kühl
2024-01-22 16:22:35 +01:00
parent 102a7fc604
commit 9509e56f3e
9 changed files with 30 additions and 8 deletions
@@ -32,7 +32,7 @@ public:
void bind(size_t pos, const char *str, size_t size) override;
void bind(size_t pos, const std::string &str) override;
void bind(size_t pos, const std::string &str, size_t size) override;
void bind(size_t pos, const utils::blob &blob) override;
private:
sqlite3 *db_{nullptr};
sqlite3_stmt *stmt_{nullptr};
@@ -118,4 +118,9 @@ void sqlite_parameter_binder::bind(size_t pos, const std::string &x, size_t size
throw_sqlite_error(ret, db_, "sqlite3_bind_text");
}
void sqlite_parameter_binder::bind(size_t pos, const utils::blob &blob)
{
}
}