How do I connect to a SQL Lite database?
Use Mono.Data.SqliteClient. Make sure you are using at least Mono 1.1.4 since SQL Lite provider does not work in the Mono 1.0.x releases and prior. Use a connection string like “URI=file:SqliteTest.db” if you are using SQL Lite version 2.x or use “version=3,URI=file:SqliteTest.db” if using SQL Lite version 3.x. See here (http://www.mono-project.com/SQL_Lite) for more info.