我制作了一个包含3种表格的节目。我在第一种形式中使用了Microsoft Access数据库,它在这里完美运行的是我使用的代码。
public partial class newRegisteration : Form
{
private OleDbConnection connection = new OleDbConnection();
public newRegisteration()
{
InitializeComponent();
connection.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\OmarS_000\Documents\Visual Studio 2015\Projects\School System\School System\School.accdb;
Persist Security Info=False;";
}
private void button1_Click(object sender, EventArgs e)
{
try
{
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = "INSERT into School ([Name], [Age], [Grade], [Class]) VALUES('" + nameTextBox2.Text + "', '" + ageTextBox2.Text + "', '" + gradeTextBox2.Text + "', '" + classTextBox2.Text + "') ";
command.ExecuteNonQuery();
MessageBox.Show("Data Saved");
connection.Close();
}
catch (Exception ex)
{
MessageBox.Show("Error" + ex);
Clipboard.SetText(ex.ToString());
}
}
}
现在以第二种形式,当我将网格视图数据库从数据源拖到表单时,虽然它适用于第一种形式,但它不起作用。我尝试编写代码来调用数据库的网格视图,但它也没有工作,我得到的只是数据库的空列,代码页中没有编写代码。当我复制代码并修改它以匹配新表单时,它会获得错误意外处理程序。那怎么能解决这个问题呢? 我如何使用具有相同连接的数据库一次?
PS:我尝试与同一个数据库建立另一个连接也不起作用。
编辑:第二个表单代码
private void CurrentStudents_Load(object sender, EventArgs e)
{
using (OleDbConnection connection2 = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\OmarS_000\Documents\Visual Studio 2015\Projects\School System\School System\School.accdb;Persist Security Info=False;"))
{
OleDbCommand cmd = new OleDbCommand("Select * from School", connection2);
OleDbDataAdapter olda = new OleDbDataAdapter(cmd);
DataTable dt = new DataTable();
olda.Fill(dt);
schoolDataGridView.DataSource = dt;
schoolDataGridView.AutoGenerateColumns = true;
}
}
答案 0 :(得分:1)
您的数据库可能锁定在其中一个表单中。您应该尝试在USING块中访问您的连接,这样您就不需要显式关闭或处理您的连接对象。
using (OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\OmarS_000\Documents\Visual Studio 2015\Projects\School System\School System\School.accdb;Persist Security Info=False;"))
{
connection.Open();
//Your code goes here
}