i would like to open SQLite DB file in C#.
I have this code rewrited from Visual Basic source code.
SqlConnection myConnection = new SqlConnection();
myConnection.ConnectionString = "Data Source=C:\\web.db;";
myConnection.Open();
but i can't open the file 'web.db' on local computer in C# Console Application.