使用winforms从SQL server 2008r2检索数据

本文关键字:2008r2 检索 数据 server SQL winforms 使用 | 更新日期: 2023-09-27 18:13:35

我正在创建一个c# windows表单应用程序,它将从已经在sql server2008r2中创建的DB中检索数据。有2赢形式在我的应用程序,第一个是获得登录的详细信息,第二个是显示相关的数据给定UserID &密码。我无法将数据输入第二张表格。这是我的代码:

* * * * * * * 1形式 * * * *

 public partial class FormLog_in : Form
 {
    SqlConnection con = new SqlConnection("Data source=CHINTHAK-PC ; Initial Catalog=FlintecTest; Integrated Security = yes;");
    SqlDataAdapter da = new SqlDataAdapter();
    SqlCommand cmd = new SqlCommand();
    public FormLog_in()
    {
        InitializeComponent();
    }
    private void btnLogIn_Click(object sender, EventArgs e)
    {
        if (!(string.IsNullOrEmpty(txtUserName.Text)) && !(string.IsNullOrEmpty(txtPassword.Text)))
        {
            con.Open();
            string query = "SELECT count(*) FROM LogIn  WHERE UesrName=@1 AND PassWord=@2 ";
            cmd = new SqlCommand(query, con);
            cmd.Parameters.Add("@1", SqlDbType.NVarChar).Value = txtUserName.Text;
            cmd.Parameters.Add("@2", SqlDbType.NVarChar).Value = txtPassword.Text;
            int count = Convert.ToInt32(cmd.ExecuteScalar());
            con.Close();
            if (count > 0)
            {
                MessageBox.Show("Valid Username and Password");
                Welcome f1 = new Welcome();
                f1.Show();
            }
            else
                MessageBox.Show("Invalid Username or Password try again");
        }

* * * * * 第二形式 * *

public partial class Welcome : Form
{
    string query = null;
    SqlConnection con = new SqlConnection("Data source=CHINTHAK-PC ; Initial Catalog=FlintecTest; Integrated Security = yes;");
    SqlDataAdapter da = new SqlDataAdapter();
    BindingSource userTable = new BindingSource();
    DataSet ds = new DataSet();
    public Welcome()
    {
        InitializeComponent();
    }
    private void Welcome_Load(object sender, EventArgs e)
    {
        query = "SELECT * FROM  Users WHERE UserName=@x AND Users.Password=@y ";//x should be given username by current login
        da.SelectCommand = new SqlCommand(query, con);                          //y should be given password by current login
        ds.Clear();
        da.Fill(ds, "usr");
        userTable.DataSource = ds.Tables["usr"];
        txtFristName.DataBindings.Add(new Binding("Text", userTable, "FirstName"));
        txtLastName.DataBindings.Add(new Binding("Text", userTable, "LastName"));
        txtAddress.DataBindings.Add(new Binding("Text", userTable, "Address"));
        txtTelephone.DataBindings.Add(new Binding("Text", userTable, "Telephone"));
        txtEmail.DataBindings.Add(new Binding("Text", userTable, "Email"));
        txtFax.DataBindings.Add(new Binding("Text", userTable, "Fax"));
        txtSection.DataBindings.Add(new Binding("Text", userTable, "Section"));
        txtPosition.DataBindings.Add(new Binding("Text", userTable, "Position"));
    }
}

使用winforms从SQL server 2008r2检索数据

为什么不在欢迎表单中修改构造函数来接收参数呢?

 public Welcome(String usr, String pword)
{
    InitializeComponent();
    this.Username=usr;
    this.Password=pword; // you should have a form of encryption for your password
}

所以,当你调用时,你做:

Welcome f1 = new Welcome(txtUsername.Text,txtPassword.Text);

然后在欢迎表单中添加属性,比如

private String Username { get; set; }
private String Password { get; set; }

然后在欢迎表单加载中添加2个参数:

cmd.Parameters.Add("@x", SqlDbType.NVarChar).Value = Username;
cmd.Parameters.Add("@y", SqlDbType.NVarChar).Value = Password;

您可以使用构造函数来解决您的问题

当你点击"登录"按钮(假设有一个)时,你可以:

private void login_Click(object sender, System.EventArgs e)
{
    Form2 frm=new Form2(userName.text,password.tex);
    frm.Show();
}

第二个表单构造函数可以是:

public Form2(string user, string pass)
{
  InitializeComponent(); 
  //Save your parameters here so you can use them with the query
}

还有其他方法可以做到这一点。http://www.codeproject.com/Articles/14122/Passing-Data-Between-Forms

当然你不能以第二种形式从数据库中检索数据,因为你不是

1-您没有将x和y参数发送到第二个表单

Form2 frm = new Form2(userName.text,password.tex);
frm.Show();

2-必须将x和y传递给SqlCommand中的查询并执行查询

query = "SELECT * FROM  Users WHERE UserName='"+ x +"'AND Password='"+y+"'";

最终代码

表格一

if (count > 0)
{ 
    MessageBox.Show("Valid Username and Password");
    Welcome f1 = new Welcome( txtUserName.Text,txtPassword.Text);
    f1.Show();
}

string x, y;
public Welcome(String usr, String pword)
{
    InitializeComponent();
    x = usr; y = pword;
}
private void Welcome_Load(object sender, EventArgs e)
{
    query = "SELECT * FROM  Users WHERE UserName='"+ x +"'AND Password='"+y+"'";
    cmd.SelectCommand = new SqlCommand(query ,con);
    ds.Clear();
    cmd.Fill(ds);
    userTable.DataSource = ds.Tables[0];
    txtFristName.DataBindings.Add(new Binding("Text", userTable, "FirstName"));
    txtLastName.DataBindings.Add(new Binding("Text", userTable, "LastName"));
    txtAddress.DataBindings.Add(new Binding("Text", userTable, "Address"));
    txtTelephone.DataBindings.Add(new Binding("Text", userTable, "Telephone"));
    txtEmail.DataBindings.Add(new Binding("Text", userTable, "Email"));
    txtFax.DataBindings.Add(new Binding("Text", userTable, "Fax"));
    txtSection.DataBindings.Add(new Binding("Text", userTable, "Section"));
    txtPosition.DataBindings.Add(new Binding("Text", userTable, "Position"));
}