How to use SQL against a CSV file

c#, csv, sql

Solution

You can use the appropriate OLE DB provider to query the text file. You can find the query string here:

Textfile Connection String Samples

Problem

I would like to use a SQL query on a CSV file using C#. There is something like this for java here. Is there anything like this for c#?

Original source