I am reading in a .csv in C#. I don't have headers, so I need to read the first line. I say HDR=NO in the connection string and it still skips the first line. Any ideas on what I'm doing wrong?
Here is my connection string...
string strConnString = "Driver={Microsoft Text Driver (*.txt; *.csv)};DBQ=" + txtPathDir.Text + "\\" + ";Extensions=asc,csv,tab,txt;HDR=NO;";
Here is my connection string...
string strConnString = "Driver={Microsoft Text Driver (*.txt; *.csv)};DBQ=" + txtPathDir.Text + "\\" + ";Extensions=asc,csv,tab,txt;HDR=NO;";