System.Data.OleDb.OleDbException:未指定错误 - 仅在某些计算机上

时间:2015-08-13 18:21:51

标签: c# asp.net oledb

我有一个.NET framework 3.5应用程序,它通过OleDb连接到SQL Server 2000数据库。一切都运行正常,但现在只有一些用户收到此错误:

  

消息:未指定的错误
  System.Data.OleDb.OleDbException:未指定的错误
  在System.Data.OleDb.OleDbDataReader.ProcessResults(OleDbHResult hr)
  在System.Data.OleDb.OleDbDataReader.GetRowHandles()
  在System.Data.OleDb.OleDbDataReader.ReadRowset()
  在System.Data.OleDb.OleDbDataReader.Read()
  在System.Data.OleDb.OleDbDataReader.HasRowsRead()
  在System.Data.OleDb.OleDbDataReader.NextResult()
  在System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior   行为,字符串方法)
  在System.Data.OleDb.OleDbCommand.ExecuteReader(CommandBehavior行为)   在System.Data.OleDb.OleDbCommand.ExecuteReader()
  在Comafi.PymeBC.Webdav.Hibernate.Module.DataBaseConnection.GetData(String   texto,CommandType tipo)在C:\ Devel \ ComafiEmpresas \ src \ ComafiEmpresas \ Comafi.PymeBC.Webdav3 \ Comafi.PymeBC.Webdav.Hibernate.Module \ DataBaseConnection.cs:第48行
  在Comafi.PymeBC.Webdav.Hibernate.Module.DbFile.GetUniqueFile(String   

中的urlPath)

这是我的连接字符串

$('.list').on('mouseenter','img',function(){
    var imageUrl = $(this).attr("src");
    $('#show').css('background-image', 'url("' + imageUrl + '")');
});

这是我的代码。 引发错误的行是“comando.ExecuteReader()”

<add name="Webdav" 
     connectionString="Provider = SQLOLEDB.1;Data Source=DataBaseSource;Initial Catalog=DataBaseName;User Id=User;Password=SomePassword;" 
     providerName="System.Data.SqlClient"/>

我读了很多关于此的帖子,但没有人指出我正确的方向。

0 个答案:

没有答案