2 * Copyright (c) 2019 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 #ifndef __DB_MANAGER_H__
18 #define __DB_MANAGER_H__
24 #define CREATE_TAC_DB_TABLE "CREATE TABLE IF NOT EXISTS TAC(\
25 ID INTEGER PRIMARY KEY AUTOINCREMENT,\
30 #define CREATE_TLC_DB_TABLE "CREATE TABLE IF NOT EXISTS TLC(\
31 ID INTEGER PRIMARY KEY AUTOINCREMENT,\
35 sqlite3* dbCreate(std::string path, std::string query);
36 sqlite3* dbOpen(std::string path);
37 void dbClose(sqlite3 *tac_db);
38 void dbRollback(sqlite3 *tac_db);
39 bool dbUpdate(sqlite3 *tac_db, std::string path, std::string query);
40 bool dbInsert(sqlite3 *tac_db, std::string path, std::string query);
41 std::vector<std::string> dbSelect(sqlite3 *tac_db, std::string path, std::string query);
42 bool dbDelete(sqlite3 *tac_db, std::string path, std::string query);
44 #endif /* __DB_MANAGER_H__ */