1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#ifndef PQ_COMMAND_H
#define PQ_COMMAND_H
#include "command.h"
#include "pq-connection.h"
#include <memory>
#include <vector>
#include <visibility.h>
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wold-style-cast"
#pragma GCC diagnostic ignored "-Wsign-conversion"
#ifndef __clang__
# pragma GCC diagnostic ignored "-Wuseless-cast"
#endif
#include <glibmm/ustring.h>
#pragma GCC diagnostic pop
#include "command_fwd.h"
#include <boost/date_time/posix_time/posix_time.hpp>
#include <cstddef>
#include <iosfwd>
#include <string>
#include <string_view>
namespace DB {
class Blob;
}
namespace PQ {
class DLL_PUBLIC CommandOptions : public DB::CommandOptions {
public:
CommandOptions(std::size_t, const DB::CommandOptionsMap &);
explicit CommandOptions(
std::size_t hash, unsigned int fetchTuples = 35, bool useCursor = true, bool fetchBinary = false);
unsigned int fetchTuples;
bool useCursor;
bool fetchBinary;
};
using CommandOptionsPtr = std::shared_ptr<CommandOptions>;
using CommandOptionsCPtr = std::shared_ptr<const CommandOptions>;
class Command : public virtual DB::Command {
public:
Command(Connection *, const std::string & sql, const DB::CommandOptionsCPtr &);
void bindParamI(unsigned int, int) override;
void bindParamI(unsigned int, long int) override;
void bindParamI(unsigned int, long long int) override;
void bindParamI(unsigned int, unsigned int) override;
void bindParamI(unsigned int, long unsigned int) override;
void bindParamI(unsigned int, long long unsigned int) override;
void bindParamB(unsigned int, bool) override;
void bindParamF(unsigned int, double) override;
void bindParamF(unsigned int, float) override;
void bindParamS(unsigned int, const Glib::ustring &) override;
void bindParamS(unsigned int, const std::string_view) override;
void bindParamT(unsigned int, const boost::posix_time::time_duration) override;
void bindParamT(unsigned int, const boost::posix_time::ptime) override;
void bindParamBLOB(unsigned int, const DB::Blob &) override;
void bindNull(unsigned int) override;
protected:
void prepareSql(std::stringstream & psql, const std::string & sql) const;
Connection::StatementHash hash;
const std::string stmntName;
Connection * const c;
void paramsAtLeast(unsigned int);
template<typename... T> void paramSet(unsigned int, T &&... t);
void paramSet(unsigned int, const std::string_view);
std::vector<const char *> values;
std::vector<int> lengths;
std::vector<int> formats;
std::vector<std::unique_ptr<std::string>> bufs;
};
}
#endif
|