X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=res%2Fcdma_mcc_sid_list.sql;h=9a249e2d2cc7fa76f5e5f71f7f98c496ef7ba3ea;hb=refs%2Fheads%2Ftizen_7.0_hotfix;hp=c5ba2744b07645b760bd7234f81860491502a18c;hpb=919b780f07769a05e1c4722b5e486b3b3071cdc5;p=platform%2Fcore%2Ftelephony%2Ftel-plugin-database.git diff --git a/res/cdma_mcc_sid_list.sql b/res/cdma_mcc_sid_list.sql index c5ba274..9a249e2 100644 --- a/res/cdma_mcc_sid_list.sql +++ b/res/cdma_mcc_sid_list.sql @@ -1,3 +1,9 @@ +PRAGMA journal_mode = PERSIST; +PRAGMA synchronous = OFF; +PRAGMA locking_mode = EXCLUSIVE; +PRAGMA temp_store = MEMORY; +PRAGMA cache_size=-5000; + create table mcc_sid_list (mcc integer, sid_low1 integer, sid_high1 integer, sid_low2 integer, sid_high2 integer, sid_low3 integer, sid_high3 integer, gwt_offset_low1 integer, gwt_offset_high1 integer, gwt_offset_low2 integer, gwt_offset_high2 integer); BEGIN; insert into mcc_sid_list (mcc, sid_low1, sid_high1, sid_low2, sid_high2, sid_low3, sid_high3, gwt_offset_low1, gwt_offset_high1, gwt_offset_low2, gwt_offset_high2) values (202,24192,24319,0,0,0,0,2,2,3,3);