Difference between DataTable.Load() and DataTable = dataSet.Tables[];
- by subbu
Hi All ,
I have a doubt i use the following piece of code get data from a SQLlite data base and Load it into a data table
"SQLiteConnection cnn = new SQLiteConnection("Data Source=" + path);
cnn.Open();
SQLiteCommand mycommand = new SQLiteCommand(cnn);
string sql = "select…