3

我正在以这种方式使用 OleDb 读取 DBF 文件:

[TestMethod]
public void TestMethod2()
{
  const string path = @"D:\VL816183.DBF";

  var connection = new OleDbConnection(string.Format("Provider=Microsoft.Jet.Oledb.4.0;Data Source={0};Extended Properties=\"dBase IV\"", Path.GetDirectoryName(path)));
  connection.Open();

  var command = new OleDbCommand(string.Format("select MNO from {0}", Path.GetFileName(path)), connection);

  using (var reader = command.ExecuteReader())
  {
    while (reader.Read())
    {
      var str = (string)reader["MNO"];

    }
  }

  connection.Close();
}

一切似乎都很好,但字符串数据有问题。源数据库包含使用CodePage=852保存的字符串,我找不到正确读取它的方法。

我尝试将 CharSet/CodePage/CharacterSet 设置为连接字符串的扩展属性,但没有任何运气(实际上,抛出了异常:找不到可安装的 ISAM)。

我还尝试使用“vfpoledb”提供程序阅读它,但仍然没有运气。

例如,有字符串“FRANTIŠEK”,但 str 变量包含“FRANTIµEK”。

有人知道怎么做吗?谢谢

4

2 回答 2

3

好吧,几个小时后,我设法以正确的方式获得了字符串。诀窍在于将字符串列读取为 varbinary(length) :

[TestMethod]
public void TestMethod2()
{
  const string path = @"D:\KN_Vzorka_2012\VL816183.DBF";

  var connection = new OleDbConnection(string.Format("Provider=vfpoledb;Data Source={0};Extended Properties=\"dBase IV\";Locale Identifier=852;", Path.GetDirectoryName(path)));
  connection.Open();

  var command = new OleDbCommand(string.Format("select cast(MNO as varbinary(20)) as MNO FROM {0}", Path.GetFileName(path)), connection);

  using (var reader = command.ExecuteReader())
  {
    while (reader.Read())
    {
      var arr = (byte[])reader["MNO"];
      var str = Encoding.GetEncoding(852).GetString(arr);

    }
  }

  connection.Close();
}

唯一的问题是 varbinary CAST 中的长度。但它有效。希望这对某人也有帮助。

于 2013-03-27T06:28:52.097 回答
1

您可以在连接字符串中指定区域设置标识符。尝试将连接字符串文本编辑为以下内容:

"Provider=Microsoft.Jet.Oledb.4.0;Data Source={0};Extended Properties=\"dBase IV\";Locale Identifier=852;"
于 2013-03-26T15:26:35.330 回答