Hi i have a file called test.sqlite. How do i go about reading all contents from this file to the console? I already have System.Data.Sqlite
static void Main(string[] args)
{
SQLiteConnection _SQL = new SQLiteConnection("Data Source=C:\\test.sqlite");
_SQL.Open();
SQLiteCommand cmd = new SQLiteCommand();
}