I get the error below. I know in fact this is a lie. I am using mono.sqlite on a asp.net website. It was working before, when I had copied the file into the expected folder. Then I removed it and created a link. By default it's a hardlink and I checked out the permissions of the hardlink. Its 644.
But then I decided to restart mono and it then worked. A few hours later I check up on it and I get the message yet again. I restarted mono, it DIDN'T work. I stopped the other app that accesses this database, restarted mono, and it still doesn't work.
Considering the fact this very hardlink was working Why am I getting this error now?
Server Error in '/' Application
SQLite error
no such table: Images
Description: HTTP 500. Error processing request.
Stack Trace:
Mono.Data.Sqlite.SqliteException: SQLite error
no such table: Images
at Mono.Data.Sqlite.SQLite3.Prepare (Mono.Data.Sqlite.SqliteConnection cnn, System.String strSql, Mono.Data.Sqlite.SqliteStatement previous, UInt32 timeoutMS, System.String& strRemain) [0x0022f] in /tmp/buildd/mono-2.6.7/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLite3.cs:333
at Mono.Data.Sqlite.SqliteCommand.BuildNextCommand () [0x00019] in /tmp/buildd/mono-2.6.7/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite_2.0/SQLiteCommand.cs:230
Version information: Mono Runtime Version: 2.6.7 (Debian 2.6.7-5); ASP.NET Version: 2.0.50727.1433
Extra note: I am using debian and nginx with fastcgi
sqlite3package (and binary). As for locks, yes, it uses them, to an extent that varies based on what mode you're running in. E.g., WAL mode mandates at most one concurrent write, which means a lock. The hardlink worries me, "what happens if it gets two different journals, in two different directories?" – derobert Oct 5 '11 at 20:00> select count(*) from Images;shows results. ok i guess i should figure out how to not use hardlines. – acidzombie24 Oct 5 '11 at 20:07ln -s ...), but I'm not sure SQLite knows to deal with them specially. Or just put the file in one place. Not sure why it needs two names. – derobert Oct 5 '11 at 20:13