C#代碼:C#登錄頁面SQL錯誤
namespace WpfApplication22
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection(@"data source=(local);database=Aukcija;integrated security=true;");
SqlCommand cmd = new SqlCommand ("Select * from Users where username='"textBox1.Text +"' and pasword= '"textBox2.Text +"' ", conn);
conn.Open();
}
}
}
什麼是錯,我收到11個錯誤...誰能幫幫我?錯誤的
列表
你缺少你的一些字符串之間的'+'字符。 '「Blah」+ textBox1.Text +「blah」+ textBox2.Text +「blah」'。 – 2013-03-07 14:21:14
您當前的SQL語句也容易出現SQL注入,請考慮使用參數化。 http://www.dotnetperls.com/sqlparameter – Richard 2013-03-07 14:22:09
考慮使用Ctrl + K,D來設置文檔的格式。 – 2013-03-07 14:23:49