收到错误:
无法识别的数据库格式“C:\Documents and Settings\YepMyUserName\Local Settings\Temp\tmp1E1.tmp”。---> System.Data.OleDb.OleDbException: 无法识别的数据库格式 'C:\Documents and Settings\YepMyUserName\Local Settings\Temp\tmp1E1.tmp'..
代码:
using (OleDbConnection connection = new OleDbConnection(string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0}", filename)))
{
try
{
connection.Open();
....
在 connection.Open 处引发异常。我只找到一篇关于如何以这种方式加载 XML 文件的帖子,显然它没有帮助。
请帮忙。