bf53afc3ff74b6234bf0a1e35a4a42aae2e2e5bd
[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();
40
41     /**
42      * @return pointer to the corresponding sqlite3 database object
43      */
44     ::sqlite3* get();
45
46     /**
47      * @return last error message in the database
48      */
49     std::string getErrorMessage();
50
51     /**
52      * Executes the query in the database.
53      *
54      * @param query query to be executed
55      */
56     void exec(const std::string& query);
57
58 private:
59     ::sqlite3* mDbPtr;
60 };
61
62 } // namespace sqlite3
63 } // namespace config
64
65 #endif // COMMON_CONFIG_SQLITE3_CONNECTION_HPP