gpt4 book ai didi

C# Windows 应用程序访问数据库数据不会在关闭时保留

转载 作者:可可西里 更新时间:2023-11-01 08:05:41 25 4
gpt4 key购买 nike

我正在使用 C# 创建一个 Windows 应用程序,我正在访问一个空的 Access 数据库,其中包含两个表:Provinces 和 Locations。我正在处理只处理 Provinces 表的表格,如下所示:

enter image description here

这是一个子表单。当它打开时,我可以插入/更新记录等。每当我进行更改时,我单击“加载表”按钮以在 DataGridView 对象中显示更改。

如果我关闭此子窗体并再次显示它,我可以单击加载表按钮并调用所有数据以显示在 DataGridView 对象中。但是,如果我完全关闭该应用程序,那么我将丢失所有数据。我通过双击数据库文件在 Access 中启动它来证明这一点,我可以看到数据肯定已经消失了。这已成为一个谜,因为我无法弄清楚为什么数据不会保留在文件中。请指教。

下面是表单的代码。您可以从我的方法中看到,每次执行功能时我都会小心关闭连接对象。所以我很困惑为什么我总是在应用程序关闭时丢失数据?

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 GTI_Taxi_Pricing
{
public partial class frmProv : Form
{
private OleDbConnection connection = new OleDbConnection();
public frmProv()
{
InitializeComponent();
connection.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=TaxiDB.accdb;Persist Security Info=False;";
}

private void btnLoad_Click(object sender, EventArgs e)
{
try
{
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
String query = "SELECT * FROM Provinces;";
command.CommandText = query;
OleDbDataAdapter da = new OleDbDataAdapter(command);
DataTable dt = new DataTable();
da.Fill(dt);
dataGridView1.DataSource = dt;
connection.Close();
}
catch(Exception ex)
{
MessageBox.Show("Error: " + ex);
}
}

private void btnSave_Click(object sender, EventArgs e)
{
if (txtName.Text == "")
{
MessageBox.Show("The name field must have a value.");
return;
}
try
{
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = "INSERT INTO Provinces (name) VALUES ('" + txtName.Text + "')";

command.ExecuteNonQuery();
MessageBox.Show("Data Saved");
connection.Close();
}
catch(Exception ex)
{
MessageBox.Show("Error: " + ex);
}
}

private void btnNewRecord_Click(object sender, EventArgs e)
{
txtID.Text = "";
txtName.Text = "";
}

private void btnEdit_Click(object sender, EventArgs e)
{
if (txtID.Text == "")
{
MessageBox.Show("The id field must have a value.");
return;
}
if(txtName.Text == "")
{
MessageBox.Show("The name field must have a value.");
return;
}
try
{
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = "UPDATE Provinces SET name='" + txtName.Text + "' WHERE id=" + txtID.Text + ";";

command.ExecuteNonQuery();
MessageBox.Show("Data Update Successful.");
connection.Close();
}
catch (Exception ex)
{
MessageBox.Show("Error: " + ex);
}
}

private void btnDelete_Click(object sender, EventArgs e)
{
if (txtID.Text == "")
{
MessageBox.Show("The id field must have a value.");
return;
}
try
{
connection.Open();
OleDbCommand command = new OleDbCommand();
command.Connection = connection;
command.CommandText = "DELETE FROM Provinces WHERE id=" + txtID.Text + ";";

command.ExecuteNonQuery();
MessageBox.Show("Record Deleted Successfully.");
connection.Close();
}
catch (Exception ex)
{
MessageBox.Show("Error: " + ex);
}
}

private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if(e.RowIndex >= 0)
{
DataGridViewRow row = dataGridView1.Rows[e.RowIndex];
txtID.Text = row.Cells[0].Value.ToString();
txtName.Text = row.Cells[1].Value.ToString();
}
}
}

最佳答案

这是基于文件的数据库(或附加的数据库文件)的常见场景
您的连接字符串引用数据库而不使用任何路径。
这意味着您的数据库位于您的应用程序运行的同一目录中。
您在插入、修改或删除数据时没有任何问题,但是当您从 Visual Studio 调试 session 中重新启动应用程序时,您会丢失所有内容。

现在,如果您查看项目文件,您可能会在其他文件之间列出数据库文件。在此数据库文件的属性之间,您会注意到属性 Copy to the Output directory 及其值设置为 Copy Always

这意味着每次从 Visual Studio 环境中重新启动应用程序时,该文件都会从项目文件夹复制到输出目录(通常是 BIN\DEBUG 或 BIN\x86\DEBUG),但这会破坏在先前运行删除插入修改或删除的数据

将属性 Copy to Output Directory 更改为 Copy NeverCopy if Newer

但是 Copy If Newer 给 MS-Access 带来了另一个问题。如果您使用 Access o 使用 Visual Studio 的服务器连接窗口打开位于项目目录中的数据库文件,如果您不进行任何更改,该文件也会立即被修改,因此 Copy If Newer 将执行复制到输出目录

关于C# Windows 应用程序访问数据库数据不会在关闭时保留,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27888389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com