I'm using System.Data.SQLite to access a SQLite database via c#/linq. I had no problems until I tried to use the Take()/Skip() functionality which caused an exception. The error message in case of Take() is "SQLite error near ".": syntax error". Any ideas what I could do to get around this?

link|improve this question

79% accept rate
Are you using the most recent version of System.Data.SQLite? – Stephen Cleary Jun 30 '11 at 14:13
At the moment: No. I did not notice until yesterday and have to wait for my admin to install the most recent version. I'll let you know how it went. – B_old Jul 1 '11 at 7:58
With version 1.0.73.0 I still have the problem. – B_old Jul 1 '11 at 9:18
I believe the latest version is 1.0.66.0. You can try examining the generated SQL (cast the query to ObjectQuery and call ToTraceString), or just ask in the SQLite forum - the maintainers don't monitor SO regularly. – Stephen Cleary Jul 1 '11 at 14:23
I updated to this fork, which seems to have more recent versions. – B_old Jul 6 '11 at 6:30
feedback

1 Answer

perhaps you need DBLinq http://code.google.com/p/dblinq2007/

link|improve this answer
Where does DBLinq stand in all this? It seems to use System.Data.SQLite, but maybe it makes its own LINQ to SQL conversion? – B_old Jun 30 '11 at 13:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.