2

我在 ac# Unity 脚本中使用 ODBC 来访问 .xsl 文件中的数据。连接有效,我可以从文件中检索数据,但我的元数据有问题。当我调用 GetSchema(string) 函数时,它会陷入无休止的递归调用,直到导致堆栈溢出。无论我尝试获得什么特定模式,都会发生此问题。

这是我正在使用的代码:

string connectionString = "Driver={Microsoft Excel Driver (*.xls)}; DriverId=790; Dbq=" + file + ";UNICODESQL=1;Unicode=yes;";

OdbcConnection dbCon = null;
OdbcDataReader dbData = null;

try
{
  dbCon = new OdbcConnection(connectionString);
  Debug.Log(connectionString);

  dbCon.Open();

  DataTable sheets = dbCon.GetSchema(OdbcMetaDataCollectionNames.Tables);
  foreach(DataRow sheet in sheets.Rows)
  {
    string sheetName = sheet["TABLE_NAME"].ToString().Trim('\'').TrimEnd('$');    
    OdbcCommand dbCommand = new OdbcCommand("SELECT * FROM [" + sheetName + "$]", dbCon);
    DataTable data = new DataTable(sheetName);
    dbData = dbCommand.ExecuteReader();
    data.Load(dbData);
  }
}
catch (Exception ex)
{
  if (ex != null)
  {
    Debug.LogError(ex.Message);
    Debug.LogError(ex.StackTrace);
  }
  else
    Debug.LogError("Exception raise loading '" + file + "'");
}
finally
{
  if (dbData != null)
    dbData.Close();

  if (dbCon != null)
    dbCon.Close();
}

}

4

1 回答 1

0

我自己遇到了这个问题。它与monodevelop 的getschema(string str) 实现有关。它不符合人们的期望。它调用它的其他实现之一,然后递归调用自身(这会导致堆栈溢出),如果连接已关闭则抛出异常,否则调用自身。换句话说,它永远不会返回它所说的要返回的东西,它会调用自己,直到 stackoverflow 或连接关闭(这可能不会发生,因为通常在之后调用 close-command)。

public override DataTable GetSchema (string collectionName)
{
    return GetSchema (collectionName, null);
}
public override DataTable GetSchema (string collectionName, string [] restrictionValues)
{
    if (State == ConnectionState.Closed)
        throw ExceptionHelper.ConnectionClosed ();
    return GetSchema (collectionName, null);
}

^ 来自文档:https ://github.com/mono/mono/blob/mono-4.0.0-branch/mcs/class/System.Data/System.Data.Odbc/OdbcConnection.cs

这就是你的错误的原因,但不幸的是我目前没有任何真正的解决方案,但我的解决方法可能对某人有用。我想在我的 Excel 文件中获取一些工作表名称,所以我所做的是添加我想在特定工作表“Unity”中使用的所有工作表名称。然后我读进去以获取工作表名称,然后将它们一一加载。

这是一个非常容易出错的解决方案,因为它依赖于工作表名称的手动列表,并且该列表是正确的,但我按时赶上并且没有其他已知的替代方案,但也许它可以对某人有所帮助。

于 2015-02-25T11:52:02.887 回答