Using C#, I'm trying to create a form with a dataGridView that shows the contents of a fixed width, flat file database. Does using the "Microsoft Text Driver" require the use of a schema.ini file? Below is the connection string I'm using. I cant seem to get the grid to fill regardless of whether I use one or not but I'm not sure if I even need it to begin with. I'm not finding a whole lot of info on the subject. I'm also not sure if this is even the best method for working with such files. Any guidance would be appreciated.
string ConnectionString = @"Driver={Microsoft Text Driver (*.txt; *.csv)};DBQ=c:\files";
Thanks