fix wrong db command 65/71965/2
authorJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 30 May 2016 02:44:11 +0000 (11:44 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 30 May 2016 05:56:48 +0000 (22:56 -0700)
Change-Id: I11f7c03310042ed80486b06d98c1f55a149f7dfc
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
parser/pkgmgr_parser_db.c

index 80a4302..c818a6f 100644 (file)
@@ -3063,7 +3063,7 @@ API int pkgmgr_parser_update_app_splash_screen_display_info_in_usr_db(const char
        }
 
        /* Begin transaction */
-       ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN_EXCLUSIVE", NULL, NULL, NULL);
+       ret = sqlite3_exec(pkgmgr_parser_db, "BEGIN EXCLUSIVE", NULL, NULL, NULL);
        if (ret != SQLITE_OK) {
                _LOGD("Failed to begin transaction");
                ret = -1;