Bug-fix: fix target dll searching logic
[platform/core/dotnet/launcher.git] / NativeLauncher / inc / db_manager.h
1 /*
2  * Copyright (c) 2019 Samsung Electronics Co., Ltd All Rights Reserved
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #ifndef __DB_MANAGER_H__
18 #define __DB_MANAGER_H__
19
20 #include <string>
21 #include <sqlite3.h>
22 #include <vector>
23
24 #define CREATE_TAC_DB_TABLE "CREATE TABLE IF NOT EXISTS TAC(\
25                         ID INTEGER PRIMARY KEY AUTOINCREMENT,\
26                         PKGID           TEXT,\
27                         NUGET           TEXT,\
28                         NAME            TEXT,\
29                         VERSION         TEXT);"
30 #define CREATE_TLC_DB_TABLE "CREATE TABLE IF NOT EXISTS TLC(\
31                         ID INTEGER PRIMARY KEY AUTOINCREMENT,\
32                         PKGID           TEXT,\
33                         LIBRARY         TEXT);"
34
35 sqlite3* createDB(std::string path, std::string query);
36 sqlite3* openDB(std::string path);
37 void closeDB(sqlite3 *tac_db);
38 void rollbackDB(sqlite3 *tac_db);
39 bool updateDB(sqlite3 *tac_db, std::string query);
40 bool insertDB(sqlite3 *tac_db, std::string query);
41 bool deleteDB(sqlite3 *tac_db, std::string query);
42 std::vector<std::string> selectDB(sqlite3 *tac_db, std::string query);
43
44 #endif /* __DB_MANAGER_H__ */