As the name says.
I find that many problems are related to the lack of thread safety in the Sqlite shell needed to use Sqlite with Monotouch, so the question is, is there an alternative? There must be something !!?
w: //
Sqlite itself is not thread safe, so you need to manually block it whenever you intend to access the database. You can see how I did it with TweetStation:
http://github.com/migueldeicaza/TweetStation/
This allows me to update the database in the background.
Sqlite : sqlite-net, Sqlite Mono.Data.Sqlite.
CoreData, , , .
iOS 4 sqlite3_config (SQLITE_CONFIG_SERIALIZED) Sqlite3 #:
var result = SQLite3.Config(SQLite3.ConfigOption.Serialized); if (result != SQLite3.Result.OK) { throw new InvalidProgramException("sqlite3 refused Serialized option"); }
Source: https://habr.com/ru/post/1754842/More articles:CAAnimation that invokes a method at periodic animation intervals? - cocoaSQL Query to get the latest user comments on a blog post limited to one for each user? - sqlDetect if SQL Server 2008 is installed - installerAdding an OAuth project to Xcode causes Xcode to not find Foundation headers (heavy errors appear) - iphoneIBatis error while applying parameter map - caused by SQLException: cursor is closed - sqlHow can I catch my usual exception with Boost.Test? - c ++Cannot open .dbproj file from VSTS DB Edition - visual-studioExt JS removeAll (false) behavior - javascriptC ++ for_each calling a vector of callback functions and passing each argument - c ++How to disable color defined in a previously defined CSS class - htmlAll Articles