コード例 #1
0
        private static bool destroyClearKeyChainAndCloseWithAccessor(JSONStoreSQLLite store, Boolean destroyAll)
        {
            int rc = 0;

            lock (lockThis)
            {
                rc = store.destroyDbDirectory(destroyAll);
                store.close();
            }

            return((rc == 0) ? true : false);
        }