blob: 27f53120d37ea8dc7789131eae74aaf0fce61d4e (
plain)
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
|
#ifndef MY_CONNECTION_H
#define MY_CONNECTION_H
#include <connection.h>
#include <visibility.h>
#include "my-error.h"
#include <mysql.h>
#include <boost/shared_ptr.hpp>
namespace MySQL {
class DLL_PUBLIC ConnectionError : public virtual Error, public virtual DB::ConnectionError {
public:
ConnectionError(MYSQL *);
};
class LoadContext;
class DLL_PUBLIC Connection : public DB::Connection {
public:
Connection(const std::string & info);
~Connection();
void beginTxInt() override;
void commitTxInt() override;
void rollbackTxInt() override;
void ping() const override;
DB::BulkDeleteStyle bulkDeleteStyle() const override;
DB::BulkUpdateStyle bulkUpdateStyle() const override;
DB::SelectCommand * newSelectCommand(const std::string & sql, const DB::CommandOptions *) override;
DB::ModifyCommand * newModifyCommand(const std::string & sql, const DB::CommandOptions *) override;
void beginBulkUpload(const char *, const char *) override;
void endBulkUpload(const char *) override;
size_t bulkUploadData(const char *, size_t) const override;
int64_t insertId() override;
void execute(const std::string &, const DB::CommandOptions *) override;
mutable MYSQL conn;
protected:
Connection();
private:
my_bool my_true;
mutable boost::shared_ptr<LoadContext> ctx;
};
}
#endif
|