blob: 2ac9ade04d6b6dc76561e8a5d728e8164cf1ebbc (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* Copyright (C) 2009-2012 Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifndef __DBCOMMAND_H__
#define __DBCOMMAND_H__
#include "DBCommandParameter.h"
#include "DBDataReader.h"
#include "DBConnection.h"
class DBCommand {
public:
DBCommand(const std::string &command, DBConnection &connection);
virtual ~DBCommand();
std::vector<DBCommandParameter> ¶meters();
const std::vector<DBCommandParameter> ¶meters() const;
DBCommandParameter ¶meter(const std::string &name);
const DBCommandParameter ¶meters(const std::string &name) const;
const std::string &commandString() const;
protected:
const DBConnection &connection() const;
public: // to implement:
virtual bool execute() = 0;
virtual shared_ptr<DBValue> executeScalar() = 0;
virtual shared_ptr<DBDataReader> executeReader() = 0;
private: // against copying:
DBCommand(const DBCommand &);
const DBCommand &operator = (const DBCommand &);
private:
std::vector<DBCommandParameter> myParameters;
const std::string myCommandString;
const DBConnection &myConnection;
};
inline std::vector<DBCommandParameter> &DBCommand::parameters() { return myParameters; }
inline const std::vector<DBCommandParameter> &DBCommand::parameters() const { return myParameters; }
inline const std::string &DBCommand::commandString() const { return myCommandString; }
inline const DBConnection &DBCommand::connection() const { return myConnection; }
#endif /* __DBCOMMAND_H__ */
|