是编程新手,所以请尽可能多地协助! 最近,我的任务是使用C#& amp;做一个CRUD窗体应用程序。 MS访问。
在我的更新功能中,我遇到以下错误之一,我不知道为什么.. 我的数据也无法更新。
错误: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);
}
}
}
感谢您的帮助和解释。
答案 0 :(得分:0)
这是因为您的列在Access数据库中声明为整数,并且您尝试在其中插入String值。而且我还认为你在指定的表中没有得到适当的值,因为你用常量字符串(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");
}
希望得到这个帮助。
答案 1 :(得分: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;
}
我认为,文本框中的文字格式不正确。