- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在构建的 Xamarin.Android 应用程序存在数据库锁定问题。作为应用程序功能的概述:
我们构建了一个测试应用程序来尝试通过构建表 B 来复制表 A 中的数据的解决方案来模拟这一点,以便用户可以继续在表 A 上工作。但是当表 B 上的数据尝试同步时( delete 是为了模拟这个)它的数据,我们正在获取仍在 Get() 上的表上的锁。
My Database code is here:
using System;
using SQLite;
using System.Collections.Generic;
using System.Linq;
namespace LockSimulation
{
public class SampleDatabaseB : IDatabase
{
public SampleDatabaseB()
{
try
{
string dbPath = System.IO.Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.Personal),
"sampleb.db3");
using (SQLiteConnection db = new SQLiteConnection(dbPath))
{
db.CreateTable<Sample>();
db.Close();
}
}
catch (Exception ex)
{
Console.WriteLine("DB already created");
}
}
public List<Sample> Get()
{
List<Sample> samples = new List<Sample>();
string dbPath = System.IO.Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.Personal),
"sampleb.db3");
using (var db = new SQLiteConnection(dbPath,SQLiteOpenFlags.ReadOnly))
{
var s = db.Table<Sample>();
// ISSUE IS HERE> s.ToList() SHOWS THE LOCK
samples = s.ToList();
db.Close();
}
return samples;
}
public void Copy(List<Sample> samples)
{
string dbPath = System.IO.Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.Personal),
"sampleb.db3");
using (var db = new SQLiteConnection(dbPath, SQLiteOpenFlags.ReadWrite | SQLiteOpenFlags.FullMutex | SQLiteOpenFlags.Create | SQLiteOpenFlags.SharedCache))
{
db.InsertAll(samples);
db.Close();
}
}
public void Save(object sample)
{
string dbPath = System.IO.Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.Personal),
"sampleb.db3");
using (var db = new SQLiteConnection(dbPath, SQLiteOpenFlags.ReadWrite | SQLiteOpenFlags.Create | SQLiteOpenFlags.SharedCache))
{
db.Insert(sample);
db.Close();
}
}
}
}
My Scheduled Job is here:
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Android.App;
using Android.App.Job;
namespace LockSimulation
{
[Service(Name = "com.testapp.LockSimulation.Job", Permission = "android.permission.BIND_JOB_SERVICE")]
public class SyncJob : JobService
{
SampleDatabaseB db = null;
public override bool OnStartJob(JobParameters jobParams)
{
db = new SampleDatabaseB();
Task.Run( () =>
{
var loopCount = jobParams.Extras.GetInt("LoopCount", 10);
List<Sample> samples = db.Get();
try
{
foreach (Sample sample in samples)
{
db.Delete(sample);
}
if (db.Get().Count == 0)
{
JobFinished(jobParams, false);
}
else
{
JobFinished(jobParams, true);
}
}
catch (SQLite.SQLiteException ex)
{
Console.WriteLine(ex);
}
});
return true;
}
public override bool OnStopJob(JobParameters jobParams)
{
//Before the Job tries to finish, we will check the Samples DB.
//If there is Samples on the DB, we will need to tell the process
//to run the job again.
//If there is an issues in doing so, tell the process to try again.
//if (db.Get().Count == 0)
//{
// return false;
//}
//else
//{
// return true;
//}
try
{
if (db.Get().Count == 0)
{
return false;
}
else
{
return true;
}
}
catch (Exception ex)
{
var properties = new Dictionary<string, string>
{
{ "Syncing Job Exception", ex.Message},
{ "DB Issue", "DB could be having processing done on it. Will try again."}
};
Console.WriteLine(properties);
//Crashes.TrackError(ex, properties);
return true;
}
}
}
}
And my button code is here:
button.Click += delegate {
SampleDatabaseB sampleDatabaseB = new SampleDatabaseB();
List<Sample> samplesA = sampleDatabase.Get();
List<Sample> samplesB = sampleDatabaseB.Get();
Console.WriteLine(String.Format("Total Samples In A Before Copy {0}", samplesA.Count));
Console.WriteLine(String.Format("Total Samples In B Before Copy {0}", samplesB.Count));
sampleDatabaseB.Copy(samplesA);
sampleDatabase.DeleteAll();
Console.WriteLine(String.Format("Total Samples In B After Copy {0}", sampleDatabaseB.Get().Count));
Console.WriteLine(String.Format("Total Samples In A After Copy {0}", sampleDatabase.Get().Count));
var jobBuilder = this.CreateJobBuilderUsingJobId<SyncJob>(1)
.SetRequiredNetworkType(NetworkType.Any)
.SetBackoffCriteria(2000, BackoffPolicy.Linear)
.SetPersisted(true)
.Build();
var jobScheduler = (JobScheduler)GetSystemService(JobSchedulerService);
var scheduleResult = jobScheduler.Schedule(jobBuilder);
if (JobScheduler.ResultSuccess == scheduleResult)
{
Console.WriteLine("Samples Scheduled for Syncing Successfully");
}
else
{
Console.WriteLine("Samples Unsuccessfully Scheduled for Syncing.");
}
};
有没有人遇到过读取导致锁定这样的问题?从你的经验中有什么我可以补充的吗?这对我们来说是一个巨大的障碍,我们真的不知道为什么会这样。
最佳答案
我在原生 android 中遇到了类似的问题。我想做点什么,然后关上 table 再打开。我不断收到 android.database.sqlite.SQLiteDatabaseLockedException: database is locked (code 5)
。我设法通过不一直打开和关闭数据库来解决这个问题。
关于android - SQLite 数据库锁定读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58199563/
我对 Java 并发性比较陌生(还没有阅读 JCIP,但它在我的列表中!)并且我有一个关于锁定行为的问题。具体来说,Java 是锁定对象的引用,还是锁定对象本身? 代码示例(不是 sscce,因为我不
我的团队使用 TortoiseSVN 编写版本控制代码。有时,有人使用“获取锁定”选项。是否有可能看到解决方案中的锁? 最佳答案 http://tortoisesvn.net/docs/nightly
我在使用 SVN 时遇到了一个小问题。 当我跑 svn stat我明白了: ~ some/dir 当我跑 svn commit -m "test"我明白了:svn: working copy
我启用了 jenkins 安全性,认为它会提示我创建一个帐户。我尝试在 c:/program files/jenkins 中删除和编辑我的 config.xml 文件,但我不确定如何在没有访问权限的情
实现与 S3 结合使用的简单锁定机制的推荐方法是什么? 我想做的例子: 通过对象 ID 获取锁 从 S3 读取对象 修改数据 将对象写入 S3 释放锁 理想情况下寻找基于云的锁定机制。我可以在本地使用
找到这个here : 一般来说,在以下任何情况下,请考虑在列上创建索引: 索引列上存在引用完整性约束,或者列。索引是避免全表锁的一种方法,否则,如果您更新父表主键,则需要,合并到父表中,或从父表中删除
在我的程序中,我将把每个“ block ”数据存储在一个单独的文件中。多个线程都会读取和写入各种文件,我想避免因未正确同步而可能出现的问题。本质上,我想要一个设置,其中每个文件的行为就好像它有自己的
我想使用此script作为资源,通过使用Windows API(重置管理器)与Go for Windows中的内容相同 到目前为止,我的代码是 Rstrtmgr := syscall.NewLazyD
这里的问题是:“这些选择中的哪一个对于线程安全选择的剧院具有最佳性能?” public static List lockList = initializeLocks(); public boolean
我有一个侧面菜单,单击图标时打开,单击页面或单击菜单上的项目时关闭。我正在尝试实现锁定,因此当单击锁定图标时,即使您单击菜单项或页面,菜单也不会关闭。 我能够将图标从锁定图标更改为解锁图标,但我在停止
使用 TRueType 字体编写 SDL 程序。我调用 TTF_Init() 来初始化 TTF 并使用 TTF_OpenFont( name, size ) 打开我的字体。 我有一个例程,可以使用以下
我正在尝试调试基于运行 FreeRTOS 的 STM32F3 uC 的应用程序。我已在应用程序的线程上下文中的随机位置手动将 PSP 设置为无效值(例如 0),希望触发 memManageFault/
我有以下 C# 代码: 1. List bandEdgeList; 2. 3. bandEdgeList = CicApplication.BandEdgeCache.Where(r
我正在用骰子制作游戏。这个想法是持有/锁定骰子。我把骰子做成按钮,这样现在就可以点击它们了。示例:我抛出一个“6”和一个“1”。我点击“6”,所以现在只会抛出“1”。 我对这个有点迷失了,我需要创建
我正在使用以下代码下载约 200mb 的播客并将其写入文档目录: var podcastRequest = NSURLRequest(URL: audioUrl) NSURLConnection.se
下面的类 DoStuff 启动一个线程并同步以保护监听器对象在 null 时不被访问。 现在,当从外部访问 DoStuff 类函数 setOnProgressListener() 时,我遇到了问题,因
我正在编写一个使用巨大背景 Canvas 的网站。我试图锁定浏览器调整大小处理程序以避免滚动问题(背景越界等) 这是我第一次做一个完整的后台网站。任何有关优化的建议(png 大小 580.72 KB
我是 C# 和线程的新手,我有这个问题要解决: 我有一个处理一些数据的线程,它会不时(必要时)触发我在启动线程之前设置的事件方法 (DataProcessor)。该线程位于专有 dll 中。所以我不能
我正在使用相机,我使用的是文档中给出的完全相同的示例: http://developer.android.com/resources/samples/ApiDemos/src/com/example/
我有几个座位可供用户预订。同一时间,只有一个用户可以参与预订过程,这样同一个座位就不会被多个用户预订。在我的 Java 代码中,我使用了“synchronized”关键字来完成它。这行得通。 但是,现
我是一名优秀的程序员,十分优秀!