From: Hyunho Kang Date: Wed, 22 Jun 2016 07:59:56 +0000 (+0900) Subject: Fix notification db do not sync bug X-Git-Tag: submit/tizen/20160623.053734^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e99874eb032aa808a98e81dc7c2fd99cb626b31;p=platform%2Fcore%2Fapi%2Fnotification.git Fix notification db do not sync bug Change-Id: I2daa9bd453610533ba8ff80fff6a32353f149711 Signed-off-by: Hyunho Kang --- diff --git a/src/notification_db.c b/src/notification_db.c index da915eb4..b950c3fc 100755 --- a/src/notification_db.c +++ b/src/notification_db.c @@ -31,6 +31,7 @@ #define NOTIFICATION_DB_NAME ".notification.db" #define CREATE_NOTIFICATION_TABLE " \ PRAGMA journal_mode = PERSIST; \ +PRAGMA synchronous = FULL; \ create table if not exists noti_list ( \ type INTEGER NOT NULL, \ layout INTEGER NOT NULL default 0, \