Files
SQLite/include/SQLiteStatement.h
T
2020-02-12 19:57:50 +01:00

28 lines
376 B
C++

#ifndef SQLITESTATEMENT_H
#define SQLITESTATEMENT_H
#include <string>
class sqlite3_stmt;
namespace SQLite {
class SQLiteClient;
class SQLiteStatement
{
public:
SQLiteStatement(SQLiteClient& client, const std::string& query);
~SQLiteStatement();
operator sqlite3_stmt*();
private:
sqlite3_stmt* m_pStatement;
};
} // namespace SQLite
#endif // SQLITESTATEMENT_H