如何在 C# 中从 CSV 中删除记录?

发布于 2024-11-04 08:47:12 字数 750 浏览 1 评论 0原文

我正在尝试从 CSV 格式的文本文件中删除记录。这是我用于读取和插入记录的代码:

    OleDbConnection con = new OleDbConnection();
    con.ConnectionString = constr;
    con.Open();
    OleDbCommand COM = new OleDbCommand();
    COM.Connection = con;
    COM.CommandText = "select * from shop.txt where id like '" + textBoxSearch.Text + "%'";
    OleDbDataAdapter da = new OleDbDataAdapter(COM);
    DataSet ds = new DataSet();

    da.Fill(ds);
    COM.ExecuteNonQuery();
    dataGridView1.DataSource = ds.Tables[0].DefaultView;
    con.Close();

但它不适用于删除。删除查询如下: delete * from shop.txt where id like

注意:调用 ExecuteNoneQuery 时发生以下异常

OleDbException: Deleting data in a like此 ISAM 不支持列表。

I'm trying to remove records from CSV formatted text file. here is my code for reading and inserting records:

    OleDbConnection con = new OleDbConnection();
    con.ConnectionString = constr;
    con.Open();
    OleDbCommand COM = new OleDbCommand();
    COM.Connection = con;
    COM.CommandText = "select * from shop.txt where id like '" + textBoxSearch.Text + "%'";
    OleDbDataAdapter da = new OleDbDataAdapter(COM);
    DataSet ds = new DataSet();

    da.Fill(ds);
    COM.ExecuteNonQuery();
    dataGridView1.DataSource = ds.Tables[0].DefaultView;
    con.Close();

But it dont work for remove. the remove query is like this: delete * from shop.txt where id like <something>

Note: when calling ExecuteNoneQuery following exception is occurred

OleDbException: Deleting data in a liked list is not supported in this ISAM.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

揪着可爱 2024-11-11 08:47:12

从文本文件中删除行并不容易 - 因此 OLE 适配器不支持它。一些选项:

  • 选择要保留到 DataTable 中的数据,然后将其导出到 csv 文件。
  • 解析 CSV 文件,过滤不需要的行并将所有其他行写入另一个 CSV 文件。这可能比使用 OLE 将所有数据加载到内存中然后将它们转储回要快一些。

Deleting rows from a textfile is not easy - so the OLE adapter doesn't support it. Some options:

  • Select the data you want to keep into a DataTable and then export it to a csv file.
  • Parse the CSV file, filter unwanted lines and write all other lines into another CSV file. This might be a bit faster than using OLE to load all the data into memory and then dump them back out.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文