vote up 7 vote down star
6

I have a small project that require a storage (I choose SQLite) and I got good result with the ADO DLL for .Net for Sqlite.

After the Install, I noticed that it contain a SQLLinq.dll. Before investigating too much effort, and because I haven't see any good example on the web, I would like to know if anyone got any good result with SQLite and LINQ?

*If linqtosql work the same way what ever the SQL database, let me know it. I was interesting with the Dll when I saw it because I never use Linqtosql before and I thought it would be a great opportunity to try,

flag

7 Answers

vote up 12 vote down check

I've recently discovered DBLinq, which supports SQLite among other DB:

link|flag
this one should be the answer, it's the only LINQ<->SQLite that I've found that looks good – jcollum Jan 24 at 1:27
1  
Except it's still in CTP. – jcollum Jan 24 at 2:17
It's the only LINQ to SQL provider to databases other than SQLServer that i've found – Ricky AH Jan 25 at 9:36
I changed the answer. Back in the time it this answer wasn't there but now it's obviously the best one. – Daok Aug 14 at 13:07
vote up 0 vote down

Assuming you have all the references added, using the correct Data Adapters, LINQ is a viable and good option for you.

link|flag
vote up 4 vote down

This isn't an answer to your question as such, but as an alternative you could use SQL Compact:

http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx

Which has good LINQ-to-SQL support, and (despite the name) is great for desktop apps with small storage requirements.

link|flag
+1 I will keep Sqlite but you learn me something new with Compact! – Daok Oct 31 '08 at 21:00
vote up 3 vote down

LINQ to SQL only supports SQL Server/Compact however it is possible the SQLite people have written their own LINQ provider given the name of the assembly.

If that's the case you would be able to use the LINQ query syntax by adding a reference to it but you wouldn't get LINQ to SQL specific features such as the DataContext/designer/SQL Metal/Column attributes/EntitySet/EntityRef etc.

link|flag
Alright thx for the information. I'll mark you as answer if by the end of the day no one have a better answer ! +1 – Daok Oct 30 '08 at 16:31
vote up 2 vote down

I my recent project I have used SQlite to save application data. It worked great for me. I could retrieve, filter and save data using only LINQ and C# code without using any SQL constructs.

Here you can download my tiny Visual Studio 2008 test project, where the C# code retrieves data from SQlite file database:

http://www.nik.xail.net/TestSQlite.rar

(copy the link and past it to you browser address field)

  • Launch the program TestSQlite.exe to see some data retrieved from DB.
  • Get a free SQlite GUI administration tool to easily create new tables, columns etc.
  • Explore the code
link|flag
Thank you. I will check it soon. – Daok Apr 29 at 18:45
1  
-1 broken link (stupid 15 characters comment limit HATE HATE HATE) – romkyns Oct 11 at 19:15
vote up 0 vote down

this is a good linq to sqlite..

http://www.devart.com/dotconnect/sqlite/

link|flag
vote up 0 vote down

From my own experience, Microsoft SQL Compact Framework is a REAL NO-GO. It is REALLY FREAKING slow and its Query Analyzer is just really poor. I had to ask my team to rewrite all the plumbing code of my Windows Mobile component to get rid of the awful performances of SQL CE.

link|flag

Your Answer

Get an OpenID
or

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