1

我是编程新手,所以请尽可能提供帮助!最近,我的任务是使用 C# 和 MS 访问做一个 CRUD Windows 窗体应用程序。

在我的更新功能中,我面临以下错误之一,我不确定为什么..我的数据也无法更新。

错误:ArgumentException未处理

输入字符串的格式不正确。无法存储在 staff_id 列中。预期类型是 Int32。

这是我的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using AcuzioSapp.AcuzioSecureStore_DatabaseDataSetTableAdapters;

namespace AcuzioSapp
{
    public partial class Update_Client : Form
    {
        private DataRow row;
        private ClientTableAdapter adapter;
        public Update_Client(DataRow row, ClientTableAdapter adapter)
        {
            InitializeComponent();
            this.row = row;
            this.adapter = adapter;
            textBox_id1.Text = Convert.ToString(row["c_id"]);
            textBox_name1.Text = Convert.ToString(row["c_name"]);
            textBox_address1.Text = Convert.ToString(row["c_address"]);
            textBox_cinfo1.Text = Convert.ToString(row["c_contactinfo"]);
            textBox_pinfo1.Text = Convert.ToString(row["profile_info"]);
            textBox_refno1.Text = Convert.ToString(row["c_8digitrefno"]);
            textBox_staffid1.Text = Convert.ToString(row["staff_id"]);
        }

        private void button_close_Click(object sender, EventArgs e)
        {
            Close();
        }

        private void button_update_Click(object sender, EventArgs e)
        {
            row["c_name"] = "textBox_name1";
            row["c_address"] = "textBox_address1";
            row["c_contactinfo"] = "int.Parse(textBox_cinfo1)";
            row["c_8digitrefno"] = "(textBox_pinfo1)";
            row["profile_info"] = "textBox_refno1";
            row["staff_id"] = "int.Parse(textBox_staffid1)";

            adapter.Update(row);
        }
    }
}

感谢您的帮助和解释谢谢。

4

2 回答 2

0

那是因为您的列在您的 Access 数据库中被声明为整数,并且您尝试在其中插入一个字符串值。而且我还认为您不会在指定的表中获得正确的值,因为您通过常量字符串更新列(row["profile_info"] = "textBox_refno1";),这会将textBox_refno1插入profile_info列而不是 TextBox 值。尝试这个 :

row["staff_id"] = Convert.ToInt32(textBox_staffid1.Text);

更新: 复制并粘贴以下代码,您将永远不会遇到任何问题:

    private void button_update_Click(object sender, EventArgs e)
    {
        row["c_name"] = textBox_name1.Text;
        row["c_address"] = textBox_address1.Text;
        row["c_contactinfo"] = int.Parse(textBox_cinfo1.Text);
        row["c_8digitrefno"] = textBox_pinfo1.Text;
        row["profile_info"] = textBox_refno1.Text;
        row["staff_id"] = int.Parse(textBox_staffid1.Text);

        adapter.Update(row);

        MessageBox.Show("Data has been updated");
    }

希望这有帮助。

于 2013-01-15T12:48:10.833 回答
0
        row["c_name"] = textBox_name1.Text;
        row["c_address"] = textBox_address1.Text;
        ...
        int val;
        if(int.TryParse(textBox_staffid1.Text, out val))
        {
             row["staff_id"] = val;
        }

我认为,您的文本框中的文本格式不正确。

于 2013-01-15T12:50:14.060 回答