Microsoft jet 数据库引擎在读取 dbf 文件时找不到对象

The Microsoft jet database engine could not find object while reading dbf file

我遇到了一个非常奇怪的问题。我写了 class 通过 oledb 连接读取 dbf 文件。我已经从互联网上下载了 dbf 文件,它正在正确读取所有数据。

DBF文件位置:E:\Projects\SLAVE.DBF

我面临以下 2 个问题

1) 当我尝试读取其他 dbf 文件时,它只读取其 table 字段。它没有读取 table 字段数据。 E:\Projects\line75.dbf

2) 我面临的另一个问题是当我将这些文件放在适当的位置时我有 DBF 文件然后我得到异常

microsoft jet database engine does not find required object. Are you missing some directive or path. E:\Projects\SDW_plnParcel.dbf

我完全不明白为什么它正确地读取从互联网下载的 SLAVE.DBF,为什么它不读取 line75.dbf 的 TABLE 字段数据以及为什么它在 [= 上抛出异常16=]

我的 class 和这个 class 的一个函数如下:

public class dbfHandler
{
    public dbfHandler()
    {
        this.dbfTable = new DataTable();
    }
    public void initconnection(String filepath) // initialise dbconnection
    {
        String[] splitString = filepath.Split('\');
        this.filename = splitString[splitString.Length - 1];
        splitString = splitString.Where(w => w != splitString[splitString.Length - 1]).ToArray();
        String folderPath = String.Join("\", splitString);
        this.dbConnection = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + folderPath + ";Extended Properties=dBase III");
        this.dbConnection.Open();
    }
    public List<String> getcolumnvalues(int fieldIndex, List<int> rowIndexes)
    {
        List<String> columnvalues = new List<string>();
        try
        {
            if(this.dbConnection.State == ConnectionState.Open)
            {
                string mySQL = "select * from " + this.filename;  // dbf table name
                OleDbCommand MyQuery = new OleDbCommand(mySQL, this.dbConnection);
                OleDbDataReader reader = MyQuery.ExecuteReader();
                int rowCount = 0;
                while(reader.Read())
                {
                    bool match = rowIndexes.Any(item => item == rowCount);
                    if(match == true)
                    {
                        String value = reader.GetValue(fieldIndex).ToString();
                        columnvalues.Add(value);
                    }
                    rowCount++;
                }
                reader.Close();
            }
        }
        catch(Exception e)
        {
            throw e;
        }
        return columnvalues;
    }
    private String filename;
    private DataTable dbfTable;
    private OleDbConnection dbConnection;
}

在处理 .DBF 文件时,我总是使用 Microsoft's Visual Foxpro OleDb Provider

获得更好的结果

简化格式的连接字符串

var connString = @"Provider=VFPOLEDB.1;Data Source=C:\SomePathToData;";

现在,不要处理数据 reader -- 只是为了确保您可以得到/看到您期望的结果,请尝试使用 DataAdapter...

var da = new OleDataAdapter( yourSqlCmdObject, yourConnection)
var dt = new DataTable();
da.Fill(dt);

它应该将查询中的所有列和所有行提取到适当的数据列类型中...然后您可以循环遍历所有列名、行等。

foreach( DataColumn dc in dt.Columns )
   var tmp = dc.ColumnName;

foreach( DataRow dr in dt.Rows )
{
   object x = dr[0];   // get VALUE from column 0
   x = dr["SpecificColumn"];   // if you KNOW the column name
}

其中,您可以根据需要进行调整。但是,如果您只需要一个特定的列(或有限的列),请更改您的查询以对其进行量化。

Select OneField from YourTable...