Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/267.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#编程将数据添加到MSQL数据库中?_C# - Fatal编程技术网

如何使用c#编程将数据添加到MSQL数据库中?

如何使用c#编程将数据添加到MSQL数据库中?,c#,C#,你好! 使用VisualStudio2012,我创建了一个带有get和set代码的Student类,我需要完成StudentDAO类来创建用于将数据存储到数据库Student表的插入编码。此操作由windows窗体按钮单击事件执行 创建按钮所需的内容单击“代码”,然后插入数据库代码 //学生电脑课 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T

你好! 使用VisualStudio2012,我创建了一个带有get和set代码的Student类,我需要完成StudentDAO类来创建用于将数据存储到数据库Student表的插入编码。此操作由windows窗体按钮单击事件执行

创建按钮所需的内容单击“代码”,然后插入数据库代码

//学生电脑课

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SRSJason
{

class Student
{
    private string S_Student_id;
    private string S_Full_name;
    private DateTime S_Dob;
    private string S_Address;
    private int S_Contact;
    private string S_Username;
    private string S_Password;


    public Student()        //Default constructor
    {

    }

    public Student(string Student_id, string Full_name, DateTime Dob, string Address, int Contact, string Username, string Password)  //Overloadign
    {
        S_Student_id = Student_id;
        S_Full_name = Full_name;
        S_Dob = Dob;
        S_Address = Address;
        S_Contact = Contact;
        S_Username = Username;
        S_Password = Password;
    }

    public void setID(string Student_id)
    {
        S_Student_id = Student_id;
    }
    public string getID()
    {
        return S_Student_id;
    }

    public void setName(string Full_name)
    {
        S_Full_name = Full_name;
    }
    public string getName()
    {
        return S_Full_name;
    }

    public void setDob(DateTime Dob)
    {
        S_Dob = Dob;
    }
    public DateTime getDob()
    {
        return S_Dob;
    }

    public void setAddress(string Address)
    {
        S_Address = Address;
    }
    public string getAddress()
    {
        return S_Address;
    }

    public void setContact(int Contact)
    {
        S_Contact = Contact;
    }
    public int getContact()
    {
        return S_Contact;
    }

    public void setUsername(string Username)
    {
        S_Username = Username;
    }
    public string getUsername()
    {
        return S_Username;
    }

    public void setPassword(string Password)
    {
        S_Password = Password;
    }
    public string getPassword()
    {
        return S_Password;
    }




}
}`

//StudentDAO类(请帮助我完成此代码)

//从表单中单击按钮(请帮助我完成此代码)


请帮助我完成此编码

首先,当您创建私有属性时,您无法在表单中访问它们,您必须在同一类中创建一个方法,然后在表单中使用它。其次,您应该了解正在使用的
ORM-Object关系映射

在这里,我将列出它们:

当你选了其中一个的时候。下一步是学习它们是如何工作的以及语法是什么

然而,知道您展示了一种
ADO.NET
的语法,下面是一个如何使用ADO.NET将数据插入数据库的示例。如果您想直接从代码隐藏中添加数据,而无需使用方法。所以基本上是点击按钮的事件

private void btn_Click(object sender, EventArgs e)
{
  try
  {
   //create  object  of Connection Class..................
   SqlConnection con = new SqlConnection();

   // Set Connection String property of Connection object..................
  con.ConnectionString = "Data Source=KUSH-PC;Initial Catalog=test;Integrated           Security=True";

 // Open Connection..................
  con.Open();

 //Create object of Command Class................
 SqlCommand cmd = new SqlCommand();

//set Connection Property  of  Command object.............
cmd.Connection = con;
//Set Command type of command object
//1.StoredProcedure
//2.TableDirect
//3.Text   (By Default)

cmd.CommandType = CommandType.Text;

//Set Command text Property of command object.........

cmd.CommandText = "Insert into Registration (Username, password) values ('@user','@pass')";

//Assign values as `parameter`. It avoids `SQL Injection`
cmd.Parameters.AddWithValue("user", TextBox1.text);
cmd.Parameters.AddWithValue("pass", TextBox2.text);

       //Execute command by calling following method................
  //1.ExecuteNonQuery()
       //This is used for insert,delete,update command...........
  //2.ExecuteScalar()
       //This returns a single value .........(used only for select command)
  //3.ExecuteReader()

      //Return one or more than one record.
  cmd.ExecuteNonQuery();
  con.Close();


  MessageBox.Show("Data Saved");          
  }
     catch (Exception ex)
     {
            MessageBox.Show(ex.Message);
            con.Close();
     }


    }

确保已将
连接字符串
包含在
配置
文件中。

@RichardJSimmons没问题:)
private void submitstudent(object sender, EventArgs e)
    {


    }
private void btn_Click(object sender, EventArgs e)
{
  try
  {
   //create  object  of Connection Class..................
   SqlConnection con = new SqlConnection();

   // Set Connection String property of Connection object..................
  con.ConnectionString = "Data Source=KUSH-PC;Initial Catalog=test;Integrated           Security=True";

 // Open Connection..................
  con.Open();

 //Create object of Command Class................
 SqlCommand cmd = new SqlCommand();

//set Connection Property  of  Command object.............
cmd.Connection = con;
//Set Command type of command object
//1.StoredProcedure
//2.TableDirect
//3.Text   (By Default)

cmd.CommandType = CommandType.Text;

//Set Command text Property of command object.........

cmd.CommandText = "Insert into Registration (Username, password) values ('@user','@pass')";

//Assign values as `parameter`. It avoids `SQL Injection`
cmd.Parameters.AddWithValue("user", TextBox1.text);
cmd.Parameters.AddWithValue("pass", TextBox2.text);

       //Execute command by calling following method................
  //1.ExecuteNonQuery()
       //This is used for insert,delete,update command...........
  //2.ExecuteScalar()
       //This returns a single value .........(used only for select command)
  //3.ExecuteReader()

      //Return one or more than one record.
  cmd.ExecuteNonQuery();
  con.Close();


  MessageBox.Show("Data Saved");          
  }
     catch (Exception ex)
     {
            MessageBox.Show(ex.Message);
            con.Close();
     }


    }