summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-selectcommand.h
blob: 679e52833547be5bb3f8650c5a8050974c6d0456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef SQLITE_SELECTCOMMAND_H
#define SQLITE_SELECTCOMMAND_H

#include "sqlite-command.h"
#include <selectcommand.h>
#include <string>

namespace SQLite {
	class Connection;
	class SelectCommand : public DB::SelectCommand, public Command {
	public:
		SelectCommand(const Connection *, const std::string & sql);

		bool fetch() override;
		void execute() override;
	};
}

#endif