If I had Visual Studio I would be "hey, hey break out the champagne!" by now. But....I am working with C# Express (an excellent IDE that is free :) )
I have an SQL database that C#Express does not support. I have a DataSet I created from SQL queries.
I want to import this DataSet into A datasource so i can use it in a gridview (along with all the cool grid view features). What do I do?
namespace
Dataset {
public
partial
class
Database1DataSet {
}
}
The below code works if I want to view the data in single CSV file....I am guessing that this is NOT the way to go
using System.Data.sql;
CSV_Parser objds = new CSV_Parser();
DataSet ds = objds.getCSVData(@"c:\mydata.csv");
dataGridView1.DataSource = ds.DefaultViewManager;
dataGridView1.DataMember = "tableOfData";
many thanks for help!
CountryStyle (becuase Tim Hortons was taken)