Hi,
My previous post still holds true: it's not the extention of the file that is problematic, but the structure of the contents. If the real CSV file is formatted the same as the text file example, you cannot query it with ADO.NET: the data is not tabular. You will have to read the file with a StreamReader or something and manipulate it programatically .
My previous post still holds true: it's not the extention of the file that is problematic, but the structure of the contents. If the real CSV file is formatted the same as the text file example, you cannot query it with ADO.NET: the data is not tabular. You will have to read the file with a StreamReader or something and manipulate it programatically .
Comment