Storing serializable types in KVStore
[archive/platform/core/system/libConfig.git] / src / config / sqlite3 / connection.hpp
1 /*
2  *  Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Jan Olszak <j.olszak@samsung.com>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18
19 /**
20  * @file
21  * @author Jan Olszak (j.olszak@samsung.com)
22  * @brief  Declaration of the class managing a sqlite3 database connection
23  */
24
25 #ifndef COMMON_CONFIG_SQLITE3_CONNECTION_HPP
26 #define COMMON_CONFIG_SQLITE3_CONNECTION_HPP
27
28 #include <sqlite3.h>
29 #include <string>
30
31 namespace config {
32 namespace sqlite3 {
33
34 struct Connection {
35     /**
36      * @param path database file path
37      */
38     Connection(const std::string& path);
39     Connection(const Connection&) = delete;
40     ~Connection();
41
42     /**
43      * @return pointer to the corresponding sqlite3 database object
44      */
45     ::sqlite3* get();
46
47     /**
48      * @return last error message in the database
49      */
50     std::string getErrorMessage();
51
52     /**
53      * Executes the query in the database.
54      *
55      * @param query query to be executed
56      */
57     void exec(const std::string& query);
58
59 private:
60     ::sqlite3* mDbPtr;
61 };
62
63 } // namespace sqlite3
64 } // namespace config
65
66 #endif // COMMON_CONFIG_SQLITE3_CONNECTION_HPP