Hi all,
First of all, thanks Robert for this excellent piece of code of yours.
I've been a big fan of sqlite for small/medium projects. I've loved using it with ruby & ror.
I have a java and mostly php background. I am not a big fan of microsoft products but for some reason i just have to deal with C# now.
So I though I should make a simple c# program at home to get a clear idea of how things work. So basically it was just natural for me to use sqlite for this.
So all in all, I made my database, tables and populated them using sqliteadmin.
I've been reading docs for 2 days now. It was rather easy to figure out I would need System.Data.SQLite.dll (and end up on this forum

)
However, I must say the SQLite driver help file didn't help me much troobleshoot some basic stuff such as
I can't add any database connection within the IDE.
I tried trickin into the app.config too ==> that helped opening the sqlite database form the code, but didn't solve the above screenshot
I tried diggin in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config, but it didn't solve the issue.
so i have two questions
1) how can I add a connection to my database from the IDE Database Explorer, ie troobleshot the above screenshot (i am under the feeling I will have to solve this in order to solve question 2 below)
2) what is the C# equivalent to an ActiveRecord tool (code generator?) or
any other Object Relation Mapping tool best suited on C# / .NET
plateform ? and how can I use it with SQLite ? (i've heard of Castle Active Record, NHibernate, dj4o, Linq, Entity Framework,... but don't know where to start really)
thanks for the hints 
fourchette