I have an sql data source..select command is something like this.
Select password from users where username = Username.Text
how can i retrieve the password value and save it into a string?!
to make a comparison between password value and a textbox Password.Text
i know its a silly question but i took me long time and i still can't find the answer
Hello Ahmad,
Here's some code that should help you out... I'd be happy to clarify anything if needed.
using System.Data;
using System.Data.SqlClient;
string userPassword;
string userName;
SqlConnection cnn = new SqlConnection("Data Source = (local); Initial Catalog = nameofdatabase; Integrated Security = True");
SqlCommand cmd = new SqlCommand("select Password From Users Where username = @.username", cnn);
SqlParameter UserName = new SqlParameter("@.username", userName);
cmd.Parameters.Add(UserName);
cnn.Open();
string password = (string)cmd.ExecuteScalar();
cnn.Close();
cnn.Dispose();
if (userPassword == password)
{
// success! Do something here
}
else
{
// Failure...
}
Regards.
sql
No comments:
Post a Comment