将c#对象的参数传递给SQL
本文关键字:SQL 参数传递 对象 | 更新日期: 2023-09-27 18:17:03
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace iss_farmacie_spitali
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
sqlConnection1.Open();
sqlCommand1.Parameters.AddWithValue("user",textBox1.Text);
sqlCommand1.Parameters.AddWithValue("pass",textBox2.Text);
sqlCommand1.CommandText = "SELECT id,parola FROM ANGAJAT WHERE id=(user) AND parola=(pass)";
if (sqlCommand1.ExecuteNonQuery()!=null)
MessageBox.Show("ESTE");
sqlConnection1.Close();
}
}
}
我希望完成的是构建一个功能登录。我有一个数据库,一个名为"angajati"(员工)的表,其中包含id(实际上是用户名)和parola(密码)。我想知道的是,我可以在SQL脚本文本中引入"变量",使其像函数一样运行,并简单地传递文本框中的值。这是我从其他例子中得出的结论,但似乎行不通。有人能给我一点关于这件事的见解吗?
private void button1_Click(object sender, EventArgs e)
{
sqlConnection1.Open();
sqlCommand1.Parameters.AddWithValue("@user",textBox1.Text);
sqlCommand1.Parameters.AddWithValue("@pass",textBox2.Text);
sqlCommand1.CommandText = "SELECT id,parola FROM ANGAJAT WHERE id='@user' AND parola='@pass'";
if (sqlCommand1.ExecuteNonQuery()!=null)
MessageBox.Show("ESTE");
sqlConnection1.Close();
}