c#程序连接Access数据库时出现。它已经被别的用户以独占的方式打开,或没有查看数据的权限
我的源代码是usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSys...
我的源代码是using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.OleDb;namespace WindowsApplication3{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=."; OleDbConnection conn = new OleDbConnection(connstr); try { conn.Open(); MessageBox.Show("打开成功"); } catch (OleDbException ex) { MessageBox.Show(ex.Message); } finally { conn.Close(); } } }}数据库的用户名是Admin没有密码其他全是默认设置的。请高手帮我解决下这个问题。
展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询