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

link|improve this question

74% accept rate
What does the sqlite command-line client say about your database? I'd be a little worried about hardlinks since SQLite create temporary files in the same directory (for WAL, locks, etc.). – derobert Oct 5 '11 at 19:52
@derobert: Really? i thought sqlite only has a journal in the same directory. Does it actually use locks? The server only reads while the other one mostly writes (it reads to look up keys). Unfortunately the version apt-get uses is old and cant read the db. But i have been using the same code on windows for months w/o error. This has only been hours – acidzombie24 Oct 5 '11 at 19:55
Try the sqlite3 package (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
1  
> select count(*) from Images; shows results. ok i guess i should figure out how to not use hardlines. – acidzombie24 Oct 5 '11 at 20:07
Well, thankfully that means your database hasn't been corrupted. You could try symlinks (ln -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
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.