Hi,
I have written a small app using VB.NET 2008 express edition and Microsoft Access, but i would like to start using System.Data.SQLite rather than access. From what i have read in other posts on this forum, design time support does not work in the express editions of Visual Studio.
Can someone give me a quick example that shows how to connect to an SQLite db, run queries against the db, retrieve results, etc all in vb.net code without using the SQLite designer ??
In case you cant tell, i'm only a beginner, so please be patient with me :)
This is how i currently do it in vb with ms access and adodb.net
===================================================================
Dim RS As New ADODB.Recordset
Dim Con As New ADODB.Connection
Dim ConnectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\Loans\Loans.mdb;"
Con.ConnectionString = ConnectionString
Con.Open()
RS = Con.Execute("SELECT * FROM Loans")
===================================
Can something similiar be done with System.Data.SQLIte ?
thanks,
Michael