This article describes the c# example to solve the problem of SQlite concurrent exception method. To share with you for your reference, as follows:
Access to sqlite using c#, often encounter multithreading SQLITE database damage caused by the problem.
SQLite is a file-level database, the lock is the file level : multiple threads can be read at the same time, but only one thread to write. Android provides the SqliteOpenHelper class, adding Java’s locking mechanism for invocation. But does not provide similar functionality in c#.
The author uses the ReaderWriterLock to achieve the goal of multi-thread secure access.
using System;using System.Collections.Generic; using System.Text; using System.Data.SQLite; using System.Threading; using System.Data; namespace DataAccess { / public sealed class SqliteConn { private bool m_disposed; private static DictionaryconnPool = new Dictionary (); private static Dictionary rwl = new Dictionary (); private static readonly SqliteConn instance = new SqliteConn(); private static string DEFAULT_NAME = "LOCAL"; #region Init // Use single case , Solve the problem of initialization and destruction private SqliteConn() { rwl.Add("LOCAL", new ReaderWriterLock()); rwl.Add("DB1", new ReaderWriterLock()); connPool.Add("LOCAL", CreateConn("\\local.db")); connPool.Add("DB1", CreateConn("\\db1.db")); Console.WriteLine("INIT FINISHED"); } private static SQLiteConnection CreateConn(string dbName) { SQLiteConnection _conn = new SQLiteConnection(); try { string pstr = "pwd"; SQLiteConnectionStringBuilder connstr = new SQLiteConnectionStringBuilder