奇怪的结果从sql server返回

时间:2009-03-13 23:24:04

标签: c# .net asp.net sql-server ado.net

我正在处理我的项目,并且使用asp.net C#和返回标量变量的存储过程产生了奇怪的结果。简而言之,我试图返回用户名,但是我只得到名字中的第一个字母,这很奇怪。

我通过代码几十次去了;但是我仍然找不到错误。 如果有人能找到mystake,我真的很感激

这是我的存储过程:

set ANSI_NULLS ON
GO
set QUOTED_IDENTIFIER ON
go

ALTER PROCEDURE [one_two].[team5GetLostPassword]
(
    @user_password varchar(50),
    @email varchar(50),
    @user_name varchar(50) out,
    @user_exist int out
)
AS
BEGIN
    declare @user_fname varchar(50);
    declare @user_lname varchar(50);
    declare @user_id int;

    set @user_exist = 0;
    SET NOCOUNT ON;

    IF EXISTS(select user_email from team5_user_detail where user_email LIKE @email)
    begin
        set @user_id = (select userid from team5_user_detail where user_email Like @email);
        update team5_user Set user_password = @user_password where userid = @user_id;
        set @user_name = (select user_lname from team5_user_detail where userid = @user_id);
        set @user_exist = 1;
    end
END

和我的C#代码

protected bool IsValidUser()
{
    myConn = new SqlConnection(myConStr);
    myCommand = new System.Data.SqlClient.SqlCommand("team5GetLostPassword", myConn);
    myCommand.CommandType = CommandType.StoredProcedure;
    myCommand.Parameters.AddWithValue("@user_password", userPasswordEncrypted);
    myCommand.Parameters.AddWithValue("@email", userEmailString);

    myCommand.Parameters.AddWithValue("@user_name", "").Direction = ParameterDirection.Output;
    myCommand.Parameters.AddWithValue("@user_exist", 0).Direction = ParameterDirection.Output;

    try
    {
        myConn.Open();
        myCommand.ExecuteScalar();
        userExist = myCommand.Parameters["@user_exist"].Value.ToString();
        userName = myCommand.Parameters["@user_name"].Value.ToString();
    }
    catch (Exception exep)
    {
    }
    finally
    {
        myConn.Close();
    }

    if (userExist.Contains("1"))
        return true;
    else
        return false;
}

2 个答案:

答案 0 :(得分:3)

您需要将SqlParameter的Size属性设置为您想要返回的数据长度。

在这种情况下,我认为你不想使用ExecuteScalar()。如果要返回结果集中第一行的第一列,则使用ExecuteScalar()。由于您尝试从输出参数获取值,因此您希望使用ExecuteNonQuery()。

答案 1 :(得分:1)

尝试将用户名参数的Length属性设置为50。