Hi/P>
Yesterday I was working with some data and found the requirement to work with the CSV files. Al I had to do was read some CSV files. To read the CSV file I had to use Microsoft.Jet.OLEDB.4.0 provider. /P>
I created a function that would take the file path as a parameter and return a dataset containing the table structure of the CSV file. Now the user can do what ever he wants to with this dataset. The function was something like this./P>
public DataSet getDataSet(string FilePath)/P>
{ /P>
/SPAN>DataSet ds=new DataSet();/P>
/SPAN>string ConnectionString, CommandText;/P>
Continued...