#include "Blob.h"
#include "DBConnection.h"
#include "SQLiteEnums.h"
#include "Value.h"
#include <sqlite3.h>
#include <cassert>
#include <cstring>
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <limits.h>
Go to the source code of this file.
|
| | sqlite |
| | SQLiteXX classes and functions are defined in this namespace.
|
| |
|
| row_iterator | sqlite::begin (const statement &statement) noexcept |
| | Returns an iterator to the first row of a statement. More...
|
| |
| row_iterator | sqlite::end (const statement &statement) noexcept |
| | Returns an iterator to the end. More...
|
| |
| template<typename... Values> |
| int | sqlite::execute (const dbconnection &connection, const std::string &text, Values &&...values) |
| | Executes an SQL query on a database connection. More...
|
| |
| template<typename... Values> |
| int | sqlite::execute (const dbconnection &connection, const std::u16string &text, Values &&...values) |
| | Executes an SQL query on a database connection. More...
|
| |