summaryrefslogtreecommitdiff
path: root/libpqpp/pq-prepared.h
blob: 6b6dff14aa5fc6755c4a55f3ec27a677f760c572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef stuff
#define stuff

#include "pq-command.h"

namespace PQ {
	class PreparedStatement : public Command {
		protected:
			PreparedStatement(Connection *, const std::string &, const DB::CommandOptionsCPtr &);
			virtual ~PreparedStatement() = default;

			const char * prepare() const;
			mutable const char * pstmt;
	};
}

#endif