In console application i want to copy a row from sqlite into a an excel sheet .I am able to connect to sqlite using below code
SQLiteConnection connection = new SQLiteConnection(@"Data Source = C:\foo;Version=3;");
connection.Open();
Now through which sql command i should get the row and copy to the excel sheet which should be save in unicode.
And how to copy to the excel sheet? Please advise