Initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user