我正在尝试创建一个项目,该项目将在我的访问数据库文件中读取,写入和检查重复项。我正在使用C#并继续获取"如果连接状态= 0,我已写入程序的连接失败错误。如果有人可以提供任何帮助,我将不胜感激。我正在使用Access 2016,我不确定我的项目需要什么参考(如果有的话)。我在网上发现的一切都已过时或无效。
谢谢!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;
using System.Net;
using System.IO;
using System.Data.OleDb;
namespace RHG
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
using (OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.16.0;Data Source=C:\Users\grosales\Documents\rhg\RHG\Used.accdb"))
{
try
{
connection.Open();
MessageBox.Show("connected");
}
catch (Exception ex)
{
MessageBox.Show("connection failed");
}
}
}
`
答案 0 :(得分:5)
您尚未打开连接。
connection.Open();
注意:检查连接状态是不够的。尝试打开连接时可能会出现异常。将它包含在try-catch中。
将工作与using
using (var connection = new OleDbConnection()) {
connection.ConnectionString =
@"Provider=Microsoft.ACE.OLEDB.16.0;Data Source=C:\Users\...\Used.accdb";
try {
connection.Open();
//TODO: do something with the connection
} catch (Exception ex) {
MessageBox.Show("Connection Failed\r\n\r\n" + ex.Message);
}
}
这可确保关闭连接并释放资源。
答案 1 :(得分:0)
请尝试按照以下示例进行操作:https://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection(v=vs.110).aspx
你错过了connection.Open();声明,应该包含在try catch中。
此外,您可以在构造函数中指定连接字符串,例如
using (OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.16.0;Data Source=C:\Users\grosales\Documents\rhg\RHG\Used.accdb"))
{
//do DB access here
}
//no need to call connection.Close() - it's automatically done once you leave the using block.