blob: db520fafa48d0c4ba3415097be3e12d63a3d9a9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef stuff
#define stuff
#include "command_fwd.h"
#include "pq-command.h"
#include <string>
namespace PQ {
class Connection;
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
|