Trying to access to a DBF file using Advantage OLE DB provider throws an exception when opening a connection
问题 I have an ASP.NET MVC application which is trying to open below OLE DB connection: string conString = @"Provider=Advantage OLE DB Provider;Data Source=" + dbfFilePath + ";Extended Properties=dBASE IV;"; using (dBaseConnection = new OleDbConnection(conString)) { dBaseConnection.Open(); // Some stuff } I have installed below package from here. I am using this provider in order to access a dbf file (specified on the dbfFilePath variable) and then later add some information into it. When I