From 5dd91c7b80443c1f0e747088159c4d8b78d1856d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Dec 2015 04:13:24 +0000 Subject: SQLite files prefixed with sqlite- --- libsqlitepp/sqlite-selectcommand.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 libsqlitepp/sqlite-selectcommand.h (limited to 'libsqlitepp/sqlite-selectcommand.h') diff --git a/libsqlitepp/sqlite-selectcommand.h b/libsqlitepp/sqlite-selectcommand.h new file mode 100644 index 0000000..c795018 --- /dev/null +++ b/libsqlitepp/sqlite-selectcommand.h @@ -0,0 +1,21 @@ +#ifndef SQLITE_SELECTCOMMAND_H +#define SQLITE_SELECTCOMMAND_H + +#include +#include "sqlite-command.h" + +namespace SQLite { + class Connection; + class ColumnBase; + class SelectCommand : public DB::SelectCommand, public Command { + public: + SelectCommand(const Connection *, const std::string & sql); + + bool fetch(); + void execute(); + }; +} + +#endif + + -- cgit v1.2.3