I have a stored procedure called Decryptpaswd and I want to assign the result from the procedure to a variable called query so that I can use it in switch statement.
How can I do this?
public void ValidateUser()
{
SqlConnection conn = new SqlConnection(var3);
String sql= "Decryptpaswd";
SqlCommand cmd = new SqlCommand(sql, conn);
cmd.CommandType = CommandType.StoredProcedure;
}
try
{
conn.Open();
**switch (query)**
{
case "AA": Response.Redirect("Home");
break;
case "BB": Response.Redirect("Home1");
break;
case "CC": Response.Redirect("Home2");
break;
default: Response.Redirect("LogIn.aspx");
break;
}
}
EDIT: The Stored Proc accepts two things, UserName and Password.. If the entered Username and password is right, then Rolename is returned.. So this rolename is used in the Case statements..
CREATE PROCEDURE [dbo].[Decryptpaswd]
(
@Username varchar(10),
@Pasword varchar(256)
)
as
SELECT
Rolename FROM Users
WHERE Username = @Username AND DecryptByCert(----('---'),Pass, @Paswd)= @Pasword
}
and I want to assign that SP called "Decryptpaswd" to a variable called "query"- what does that mean? Do you mean you want to invoke the SP and do something with the result? – Marc Gravell♦ Aug 17 '12 at 11:15using (SqlDataReader SqlReader = SqlCmd.ExecuteReader())to execute it, then get yourqueryback bySqlReader.GetString(0)afterSqlReader.Read()– Eric Yin Aug 17 '12 at 11:16(string)cmd.ExecuteScalar()would be easier... – Marc Gravell♦ Aug 17 '12 at 11:16