Fork Vasum on GitHub Official Vasum Wiki on Tizen.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
connection.hpp
Go to the documentation of this file.
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 
25 #ifndef CARGO_SQLITE_SQLITE3_CARGO_SQLITE_SQLITE3_CONNECTION_HPP
26 #define CARGO_SQLITE_SQLITE3_CARGO_SQLITE_SQLITE3_CONNECTION_HPP
27 
28 #include <sqlite3.h>
29 #include <string>
30 
31 namespace cargo {
32 namespace sqlite3 {
33 
34 struct Connection {
38  Connection(const std::string& path);
39  Connection(const Connection&) = delete;
40  ~Connection();
41 
45  ::sqlite3* get();
46 
50  std::string getErrorMessage();
51 
57  void exec(const std::string& query);
58 
59 private:
60  ::sqlite3* mDbPtr;
61 };
62 
63 } // namespace sqlite3
64 } // namespace cargo
65 
66 #endif // CARGO_SQLITE_SQLITE3_CARGO_SQLITE_SQLITE3_CONNECTION_HPP
::sqlite3 * mDbPtr
Definition: connection.hpp:60
std::string getErrorMessage()
Definition: connection.cpp:69
Definition: connection.hpp:34
~Connection()
Definition: connection.cpp:51
Connection(const std::string &path)
Definition: connection.cpp:32
void exec(const std::string &query)
Executes the query in the database.
Definition: connection.cpp:56