将一个值添加到数据库中的所有列

时间:2014-12-09 03:28:56

标签: c# sql

我在这里遇到了如何在数据库的所有列中添加一个值的问题。

这就是它的样子

Windows Form showing SQL Table

我使用SQL查询添加其他值,这里是代码

public Form1()
{
    InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{

    LeaveDatabaseDataSetTableAdapters.EmployeesTableAdapter employees = new LeaveDatabaseDataSetTableAdapters.EmployeesTableAdapter();
    employees.InsertEmployee(this.txtID.Text.Trim(),
        this.txtName.Text.Trim(),
        this.txtLeaveCredits.Text.Trim());

}

private void Form1_Load(object sender, EventArgs e)
{
    // TODO: This line of code loads data into the 'leaveDatabaseDataSet.Employees' table. You can move, or remove it, as needed.
    this.employeesTableAdapter.Fill(this.leaveDatabaseDataSet.Employees);

}

我还没有在"添加每月假期积分和#34;上添加一些代码。按钮,因为我不知道如何做这个任务。

1 个答案:

答案 0 :(得分:1)

我不确定您如何使用SQL,因为您不会在粘贴的代码中显示它。

您需要使用以下SQL语句实现LeaveDatabaseDataSetTableAdapters.EmployeesTableAdapter.AddMontlyLeaveCredits()方法。

UPDATE Employees SET LeaveCredits = LeaveCredits + @mc 

将@mc添加为TextBox中的参数。