我是将DB与应用程序连接起来的新手,我试图从数据库中提取几个字段,其中我指定的参数应该过滤掉结果。我一直收到一个没有参数或参数提供。任何人都可以对此有所了解吗?感谢。
以下是存储过程:
ALTER PROC dbo.PassParamUserID
AS
set nocount on
DECLARE @UserID int;
SELECT f_Name, l_Name
FROM tb_User
WHERE tb_User.ID = @UserID;
这是我的代码
class StoredProcedureDemo
{
static void Main()
{
StoredProcedureDemo spd = new StoredProcedureDemo();
//run a simple stored procedure that takes a parameter
spd.RunStoredProcParams();
}
public void RunStoredProcParams()
{
SqlConnection conn = null;
SqlDataReader rdr = null;
string ID = "2";
Console.WriteLine("\n the customer full name is:");
try
{
//create a new connection object
conn = new SqlConnection("Data Source=.\\SQLEXPRESS;AttachDbFilename=c:\\Program Files\\Microsoft SQL Server\\MSSQL10.SQLEXPRESS\\MSSQL\\DATA\\UserDB.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True; Integrated Security=SSPI");
conn.Open();
//create command objects identifying the stored procedure
SqlCommand cmd = new SqlCommand("PassParamUserID", conn);
//Set the command object so it know to execute the stored procedure
cmd.CommandType = CommandType.StoredProcedure;
//ADD PARAMETERS TO COMMAND WHICH WILL BE PASSED TO STORED PROCEDURE
cmd.Parameters.Add(new SqlParameter("@UserID", 2));
//execute the command
rdr = cmd.ExecuteReader();
//iterate through results, printing each to console
while (rdr.Read())
{
Console.WriteLine("First Name: {0,25} Last Name: {0,20}", rdr["f_Name"], rdr["l_Name"]);
}
}
答案 0 :(得分:2)
您需要将SQL存储过程修改为:
ALTER PROC dbo.PassParamUserID
@UserID int
AS set nocount on
SELECT f_Name, l_Name FROM tb_User WHERE tb_User.ID = @UserID;
目前,您只是将其声明为程序中的变量。
以下是一些可能有助于您前进的MSDN文章:
答案 1 :(得分:1)
ALTER PROC dbo.PassParamUserID (@UserID int)
AS
set nocount on
SELECT f_Name, l_Name FROM tb_User WHERE tb_User.ID = @UserID;
如果要传递参数,则需要在AS语句之前定义它,如上所示。