Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/273.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 在c中使用相同的表单进行插入和编辑,而不使用未使用的变量_C#_Winforms - Fatal编程技术网

C# 在c中使用相同的表单进行插入和编辑,而不使用未使用的变量

C# 在c中使用相同的表单进行插入和编辑,而不使用未使用的变量,c#,winforms,C#,Winforms,好的,伙计们,我是编程新手,有一个问题。我创建了一个winform,用于将数据插入sql server。现在我想使用同一个表单来更新数据。我已经使用构造函数重载和链接完成了这项工作,这是可行的! 在主窗体frmememployees上,我有两个按钮,btnaddeemployee和btnUpdateEmployee,我还有从数据网格中获取id的employeeID和一个名为“isEditMode=true”的bool变量,现在当我单击btnUpdateEmployee时,我发送employeeI

好的,伙计们,我是编程新手,有一个问题。我创建了一个winform,用于将数据插入sql server。现在我想使用同一个表单来更新数据。我已经使用构造函数重载和链接完成了这项工作,这是可行的! 在主窗体frmememployees上,我有两个按钮,btnaddeemployee和btnUpdateEmployee,我还有从数据网格中获取id的employeeID和一个名为“isEditMode=true”的bool变量,现在当我单击btnUpdateEmployee时,我发送employeeID,isEditMode值到重载构造函数..然后frMaddeEmployee打开..在那里我有全局私有变量employeeID和bool isEditMode..然后我通过重载构造函数设置它们的值,这就是工作,但是..当我单击BtnadeEmployee时,我并没有发送employeeID和isEditMode值..并且我在添加employee时会出现未使用的变量

private int employeeID;
private bool isEditMode;
public frmAddEmployee()
{
  InitializeComponent();

  this.AutoValidate = AutoValidate.Disable;
    }
public frmAddEmployee(int employeeID, bool isEditMode): this()
{
  this.employeeID = employeeID;
  this.isEditMode = isEditMode;
}

您并没有向我们展示很多代码,但我将给您一个很好的示例,说明我如何处理程序和SQL数据库之间的通信

首先,我为每个对象创建一个类。在您的示例中,我看到您有Employee,所以我将创建一个类,其中包含关于每个Employee的少量信息变量以及我希望为它们提供的函数。所以这个类看起来像这样:

public class Employee
{
    static string databaseString = "";
    public int Id { get { return _Id; } } //This is property
    public string Name { get { return _Name; } set { _Name = value; } } //This is property

    private int _Id; //This is private variable used by property
    private string _Name; //This is private variable used by property

    public Employee()
    {
        //Constructor used to create empty object
    }

    public Employee(int Id)
    {
        try
        {
            using (SqlConnection con = new SqlConnection(databaseString))
            {
                con.Open();
                using (SqlCommand cmd = new SqlCommand("SELECT NAME FROM Employee WHERE ID = @ID", con))
                {
                    cmd.Parameters.AddWithValue("@ID", Id);

                    SqlDataReader dr = cmd.ExecuteReader();

                    //I am usin IF(dr.Read()) instead of WHILE(dr.Read()) since i want to read only first row.
                    if (dr.Read())
                    {
                        this._Id = Id;
                        this._Name = dr[0].ToString();
                    }
                    else
                    {
                        System.Windows.Forms.MessageBox.Show("There was no Employee with that ID in database!");
                    }
                }
            }
        }
        catch(SqlException ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.ToString());
        }
    }

    public void Save(bool showMessage)
    {
        using (SqlConnection con = new SqlConnection(databaseString))
        {
            con.Open();
            using (SqlCommand cmd = new SqlCommand("UPDATE Employee SET NAME = @N WHERE ID = @ID", con))
            {
                cmd.Parameters.AddWithValue("@N", this._Name);
                cmd.Parameters.AddWithValue("@ID", this._Id);

                cmd.ExecuteNonQuery();

                if (showMessage)
                    System.Windows.Forms.MessageBox.Show("Employee saved!");
            }
        }
    }

    public static void Create(string Name, bool showMessage = true)
    {
        using (SqlConnection con = new SqlConnection(databaseString))
        {
            con.Open();
            using (SqlCommand cmd = new SqlCommand("INSERT INTO Employee (ID, NAME) VALUES (COALESCE(MAX(ID), 1), @NAME)", con))
            {
                cmd.ExecuteNonQuery();

                if (showMessage)
                    System.Windows.Forms.MessageBox.Show("New Employee created!");
            }
        }
    }
}
Employee emp2 = new Employee(1); //Created and loaded emp from database
emp2.Name = "Changed Name";
emp2.Save(); //Called public method.
public partial class Form1 : Form
{
    private Employee emp;

    public Form(int EmployeeID)
    {
        InitializeComponents();

        //Creating new object of Employee but with constructor that will automatically load variables into it.
        emp = new Employee(EmployeeID);

        //Checking to see if employee is loaded since if there was no employee with given ID it would return null
        if(emp.Id == null || < 1)
        {
            DialogResult dr = MessageBox.Show("Employee doesn't exist. Do you want to create new one?", "Confirm", MessageBoxButtons.YesNo);
            if(dr == DialogResult.No)
            {
                //User doesn't want to create new employee but since there is no employee loaded we close form
                this.Close();
            }
            else
            {
                Employee.Create("New Employee");
                MessageBox.Show("New employee created");
                //Here we need to load this employee with code like emp = new Employee(newEmployeeId);
                //To get new employee id you have 2 options. First is to create function inside Employee class that will Select MAX(ID) from Employee and return it. (bad solution)
                //Second solution is to return value upon creating new employee so instead function `public static void Create()` you need to have `public static int Create()` so it returns newly created ID of new row in SQL database. I won't explain it since you are new and it will be too much information for now. You will easily improve code later. For now you can use Select Max(id) method
            }
        }

        textBox1.Text = emp.Id;
        textBox2.Text = emp.Name;
    }

    private void OnButton_Save_Click(object sender, EventArgs e)
    {
        DialogResult dr = MessageBox.Show("Do you really want to save changes?", "Save", MessageBoxButtons.YesNo);
        if(dr == DialogResult.Yes)
        {
             emp.Save();
        }
        else
        {
            //Here create private Reload function inside form that will do emp = Employee(emp.Id) and then set UI again.
        }
    }

    private void OnButton_CreateNewEmployee_Click(object sender, EventArgs e)
    {
        Employee.Create("New Employee");

        int newEmpID = something; //As i said up create method to select MAX ID or update SQL inside Create function to return newly created ID

        //I am using using since after form closes it automatically disposes it
        using(Form1 f = new Form1(newEmpID))
        {
            f.showDialog()
        }
        this.Close();
    }
}
现在,当我上课时,我可以用两种方式来称呼它:

Employee emp = new Employee(); //This will create empty employee object
Employee emp1 = new Employee(1); //This will create employee object and will load employees data from database where employees id == 1
我能做的还有:

Employee.Create("SomeName"); //Calling public static method from Employee class. Doesn't require you to create object for static methods
或者,如果我已加载employee并希望更改其名称,然后进行保存,我会这样做:

public class Employee
{
    static string databaseString = "";
    public int Id { get { return _Id; } } //This is property
    public string Name { get { return _Name; } set { _Name = value; } } //This is property

    private int _Id; //This is private variable used by property
    private string _Name; //This is private variable used by property

    public Employee()
    {
        //Constructor used to create empty object
    }

    public Employee(int Id)
    {
        try
        {
            using (SqlConnection con = new SqlConnection(databaseString))
            {
                con.Open();
                using (SqlCommand cmd = new SqlCommand("SELECT NAME FROM Employee WHERE ID = @ID", con))
                {
                    cmd.Parameters.AddWithValue("@ID", Id);

                    SqlDataReader dr = cmd.ExecuteReader();

                    //I am usin IF(dr.Read()) instead of WHILE(dr.Read()) since i want to read only first row.
                    if (dr.Read())
                    {
                        this._Id = Id;
                        this._Name = dr[0].ToString();
                    }
                    else
                    {
                        System.Windows.Forms.MessageBox.Show("There was no Employee with that ID in database!");
                    }
                }
            }
        }
        catch(SqlException ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.ToString());
        }
    }

    public void Save(bool showMessage)
    {
        using (SqlConnection con = new SqlConnection(databaseString))
        {
            con.Open();
            using (SqlCommand cmd = new SqlCommand("UPDATE Employee SET NAME = @N WHERE ID = @ID", con))
            {
                cmd.Parameters.AddWithValue("@N", this._Name);
                cmd.Parameters.AddWithValue("@ID", this._Id);

                cmd.ExecuteNonQuery();

                if (showMessage)
                    System.Windows.Forms.MessageBox.Show("Employee saved!");
            }
        }
    }

    public static void Create(string Name, bool showMessage = true)
    {
        using (SqlConnection con = new SqlConnection(databaseString))
        {
            con.Open();
            using (SqlCommand cmd = new SqlCommand("INSERT INTO Employee (ID, NAME) VALUES (COALESCE(MAX(ID), 1), @NAME)", con))
            {
                cmd.ExecuteNonQuery();

                if (showMessage)
                    System.Windows.Forms.MessageBox.Show("New Employee created!");
            }
        }
    }
}
Employee emp2 = new Employee(1); //Created and loaded emp from database
emp2.Name = "Changed Name";
emp2.Save(); //Called public method.
public partial class Form1 : Form
{
    private Employee emp;

    public Form(int EmployeeID)
    {
        InitializeComponents();

        //Creating new object of Employee but with constructor that will automatically load variables into it.
        emp = new Employee(EmployeeID);

        //Checking to see if employee is loaded since if there was no employee with given ID it would return null
        if(emp.Id == null || < 1)
        {
            DialogResult dr = MessageBox.Show("Employee doesn't exist. Do you want to create new one?", "Confirm", MessageBoxButtons.YesNo);
            if(dr == DialogResult.No)
            {
                //User doesn't want to create new employee but since there is no employee loaded we close form
                this.Close();
            }
            else
            {
                Employee.Create("New Employee");
                MessageBox.Show("New employee created");
                //Here we need to load this employee with code like emp = new Employee(newEmployeeId);
                //To get new employee id you have 2 options. First is to create function inside Employee class that will Select MAX(ID) from Employee and return it. (bad solution)
                //Second solution is to return value upon creating new employee so instead function `public static void Create()` you need to have `public static int Create()` so it returns newly created ID of new row in SQL database. I won't explain it since you are new and it will be too much information for now. You will easily improve code later. For now you can use Select Max(id) method
            }
        }

        textBox1.Text = emp.Id;
        textBox2.Text = emp.Name;
    }

    private void OnButton_Save_Click(object sender, EventArgs e)
    {
        DialogResult dr = MessageBox.Show("Do you really want to save changes?", "Save", MessageBoxButtons.YesNo);
        if(dr == DialogResult.Yes)
        {
             emp.Save();
        }
        else
        {
            //Here create private Reload function inside form that will do emp = Employee(emp.Id) and then set UI again.
        }
    }

    private void OnButton_CreateNewEmployee_Click(object sender, EventArgs e)
    {
        Employee.Create("New Employee");

        int newEmpID = something; //As i said up create method to select MAX ID or update SQL inside Create function to return newly created ID

        //I am using using since after form closes it automatically disposes it
        using(Form1 f = new Form1(newEmpID))
        {
            f.showDialog()
        }
        this.Close();
    }
}
现在,如果您有一个显示一名员工的表单,它将如下所示:

public class Employee
{
    static string databaseString = "";
    public int Id { get { return _Id; } } //This is property
    public string Name { get { return _Name; } set { _Name = value; } } //This is property

    private int _Id; //This is private variable used by property
    private string _Name; //This is private variable used by property

    public Employee()
    {
        //Constructor used to create empty object
    }

    public Employee(int Id)
    {
        try
        {
            using (SqlConnection con = new SqlConnection(databaseString))
            {
                con.Open();
                using (SqlCommand cmd = new SqlCommand("SELECT NAME FROM Employee WHERE ID = @ID", con))
                {
                    cmd.Parameters.AddWithValue("@ID", Id);

                    SqlDataReader dr = cmd.ExecuteReader();

                    //I am usin IF(dr.Read()) instead of WHILE(dr.Read()) since i want to read only first row.
                    if (dr.Read())
                    {
                        this._Id = Id;
                        this._Name = dr[0].ToString();
                    }
                    else
                    {
                        System.Windows.Forms.MessageBox.Show("There was no Employee with that ID in database!");
                    }
                }
            }
        }
        catch(SqlException ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.ToString());
        }
    }

    public void Save(bool showMessage)
    {
        using (SqlConnection con = new SqlConnection(databaseString))
        {
            con.Open();
            using (SqlCommand cmd = new SqlCommand("UPDATE Employee SET NAME = @N WHERE ID = @ID", con))
            {
                cmd.Parameters.AddWithValue("@N", this._Name);
                cmd.Parameters.AddWithValue("@ID", this._Id);

                cmd.ExecuteNonQuery();

                if (showMessage)
                    System.Windows.Forms.MessageBox.Show("Employee saved!");
            }
        }
    }

    public static void Create(string Name, bool showMessage = true)
    {
        using (SqlConnection con = new SqlConnection(databaseString))
        {
            con.Open();
            using (SqlCommand cmd = new SqlCommand("INSERT INTO Employee (ID, NAME) VALUES (COALESCE(MAX(ID), 1), @NAME)", con))
            {
                cmd.ExecuteNonQuery();

                if (showMessage)
                    System.Windows.Forms.MessageBox.Show("New Employee created!");
            }
        }
    }
}
Employee emp2 = new Employee(1); //Created and loaded emp from database
emp2.Name = "Changed Name";
emp2.Save(); //Called public method.
public partial class Form1 : Form
{
    private Employee emp;

    public Form(int EmployeeID)
    {
        InitializeComponents();

        //Creating new object of Employee but with constructor that will automatically load variables into it.
        emp = new Employee(EmployeeID);

        //Checking to see if employee is loaded since if there was no employee with given ID it would return null
        if(emp.Id == null || < 1)
        {
            DialogResult dr = MessageBox.Show("Employee doesn't exist. Do you want to create new one?", "Confirm", MessageBoxButtons.YesNo);
            if(dr == DialogResult.No)
            {
                //User doesn't want to create new employee but since there is no employee loaded we close form
                this.Close();
            }
            else
            {
                Employee.Create("New Employee");
                MessageBox.Show("New employee created");
                //Here we need to load this employee with code like emp = new Employee(newEmployeeId);
                //To get new employee id you have 2 options. First is to create function inside Employee class that will Select MAX(ID) from Employee and return it. (bad solution)
                //Second solution is to return value upon creating new employee so instead function `public static void Create()` you need to have `public static int Create()` so it returns newly created ID of new row in SQL database. I won't explain it since you are new and it will be too much information for now. You will easily improve code later. For now you can use Select Max(id) method
            }
        }

        textBox1.Text = emp.Id;
        textBox2.Text = emp.Name;
    }

    private void OnButton_Save_Click(object sender, EventArgs e)
    {
        DialogResult dr = MessageBox.Show("Do you really want to save changes?", "Save", MessageBoxButtons.YesNo);
        if(dr == DialogResult.Yes)
        {
             emp.Save();
        }
        else
        {
            //Here create private Reload function inside form that will do emp = Employee(emp.Id) and then set UI again.
        }
    }

    private void OnButton_CreateNewEmployee_Click(object sender, EventArgs e)
    {
        Employee.Create("New Employee");

        int newEmpID = something; //As i said up create method to select MAX ID or update SQL inside Create function to return newly created ID

        //I am using using since after form closes it automatically disposes it
        using(Form1 f = new Form1(newEmpID))
        {
            f.showDialog()
        }
        this.Close();
    }
}

嗨,你能分享更多的代码吗?这真的不足以理解你的问题。至少是按钮触发的部分,也许是应用程序的屏幕截图,只是为了方便地可视化您正在解释什么是sql_