blob: 6d32f5f7f3cd019a0aa8cf09a7cf5a4fb99f74d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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
|