c#調用預存程序實現登入介面詳解_C#教程

來源:互聯網
上載者:User

1,建立預存程序

複製代碼 代碼如下:

create proc Pro_Login
(
@UserName nvarchar(10),
@PassWord nvarchar(10)
)
as
select * from [User] UserName=@UserName and PassWord=@PassWord

2,通過類是實現設定資料庫字串串連
複製代碼 代碼如下:

class ConnectionString
{
public static string conStr = "Data Source=MyLove-PC;Initial Catalog=data;Integrated Security=True";
}

3,實現登入功能
複製代碼 代碼如下:

#region
//串連資料庫配置字串
using (SqlConnection con = new SqlConnection(ConnectionString.conStr))
{
con.Open();//開啟資料庫
//調用預存程序
using (SqlCommand cmd = new SqlCommand("Pro_Login", con))
{
//把文字框的值作為參數傳給預存程序
cmd.Parameters.Add("@UserName", SqlDbType.VarChar, 10).Value = textBox1.Text.Trim();
cmd.Parameters.Add("@PassWord", SqlDbType.VarChar, 10).Value = textBox2.Text.Trim();
//通過預存程序的方式執行
cmd.CommandType = CommandType.StoredProcedure;
//開始讀取資料
using (SqlDataReader dr = cmd.ExecuteReader())
{
//如果讀到使用者名稱和密碼,則調轉到介面Form2
if (dr.Read())
{
this.Hide();
Form2 f2 = new Form2();
f2.Show();
}
//否則,提示錯誤
else
{
MessageBox.Show("使用者名稱或者密碼錯誤", "請重新輸入", MessageBoxButtons.OK);
textBox1.Clear();
textBox2.Clear();
textBox1.Focus();
}
}
}
}
#endregion

4,介面測試

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.