您是C#的新用户,我正在尝试连接.accdb access 2010数据库
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
OleDbConnection connect = new OleDbConnection();
connect.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Web Develop\Documents\Storekeeper\storekeeper.accdb;Persist Security Info=False;";
connect.Open();
MessageBox.Show("Connection open");
}
}
}
我得到了这个例外:
System.Data.dll
中出现System.Data.OleDb.OleDbException
类型的第一次机会异常
数据库未使用且路径正确我该怎么办?
答案 0 :(得分:4)
您可以检查抛出异常应该有InnerException
属性。它会告诉你确切的错误是什么。要查看它,您需要捕获异常,然后显示InnerException消息:
private void Form1_Load(object sender, EventArgs e)
{
try
{
OleDbConnection connect = new OleDbConnection();
connect.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Web Develop\Documents\Storekeeper\storekeeper.accdb;Persist Security Info=False;";
connect.Open();
MessageBox.Show("Connection open");
}
catch (OleDbException e)
{
Messagebox.Show(e.InnerException.Message);
}
}
还有一些示例代码用于捕获和显示OleDbException的MSDN页面OleDbException
中嵌入的错误。
答案 1 :(得分:1)
我想,这很简单。自2010年上任以来,我认为您需要:Microsoft.ACE.OLEDB。 14 .0
答案 2 :(得分:1)
确定。如果你在64位操作系统上有Office 32位,那么你就会适应。尝试将“平台输出”更改为x86。 转到项目属性并找到“构建”选项卡。 应该在那里列出“平台目标”。
现在,即使有效,您也必须调查该决定的后果。 但至少“你会知道”。
EDIT --------------
这是你的排列。你只需要试验它们。
连接字符串,是对还是错。如前所述,“12”对比“14”。 (对不起,链接是关于Excel的。请尝试使用“T.S。”中的建议。)
正在安装Office 32位。我想如果你试图在该机器上安装“AccessDatabaseEngine_x64.exe”,它会给你一个“Office版本不对”的错误。
因为#2,你必须安装“AccessDatabaseEngine.exe”。这是32位。
“平台输出”。现在我想~~因为#3,你需要尝试将它设置为x86。
尝试将其放回x86,然后在连接字符串中尝试“12”与“14”。
EDIT -----------------
我从互联网上删了一个文件。
Oren.accdb 从 http://old.cba.ua.edu/~jomason/ac289/289AccessFiles.html
我在我的机器上编码了这个。它有效。
private void button1_Click(object sender, EventArgs e)
{
try
{
using (OleDbConnection connect = new OleDbConnection())
{
connect.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\folder1\data\Oren.accdb;Persist Security Info=False;";
connect.Open();
OleDbCommand cmd = new OleDbCommand();
cmd.Connection = connect;
cmd.CommandText = "Select * from Agreement";
StringBuilder sb = new StringBuilder();
IDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
Console.WriteLine(reader[0].ToString());
sb.Append(string.Format("{0}, {1}", reader[0].ToString(), reader[1].ToString()) + System.Environment.NewLine);
}
reader.Close();
ReportMessage(sb.ToString());
}
}
catch (System.Data.OleDb.OleDbException lolex)
{
ReportException(lolex);
}
catch (Exception ex)
{
ReportException(ex);
}
}
private void ReportException(Exception ex)
{
txtStatus.Text = ex.Message;
}
private void ReportException(System.Data.OleDb.OleDbException oleex)
{
StringBuilder sb = new StringBuilder();
sb.Append(oleex.ErrorCode + System.Environment.NewLine);
sb.Append(oleex.Message + System.Environment.NewLine );
txtStatus.Text = sb.ToString();
}
private void ReportMessage(string msg)
{
txtStatus.Text = msg;
}
编辑
可以在程序“Microsoft Access”中打开文件“storekeeper.accdb”。它不受密码保护吗?
答案 3 :(得分:0)
您需要在连接字符串的数据源路径上添加双斜杠,例如 'Data Source = C:\ folder1 \ data \ Oren.accdb; Persist Security Info = False;“;''