我有一个存储过程,用于检查输入的电子邮件(& Mobile)是否已存在于数据库中。如果它存在则返回True,否则返回False。如果返回False(即电子邮件和移动设备是唯一的),则另一个存储过程将用户详细信息插入数据库并注册他。只需单击一下按钮即可完成所有这些操作。
需要帮助这个代码:
编辑2:
protected void btnRegister_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["ConnectionString"]);
con.Open();
SqlCommand Cmd = new SqlCommand("usp_CheckEmailMobile", con);
Cmd.CommandType = CommandType.StoredProcedure;
Cmd.CommandText = "Registration";
Cmd.Parameters.AddWithValue("@Name", txtName.Text);
Cmd.Parameters.AddWithValue("@Email", txtEmailAddress.Text);
Cmd.Parameters.AddWithValue("@Password", txtPassword.Text);
Cmd.Parameters.AddWithValue("@CountryCode", ddlCountryCode.Text);
Cmd.Parameters.AddWithValue("@Mobile", txtMobileNumber.Text);
//Cmd.Parameters.Add("@Result", DbType.Boolean);
SqlParameter sqlParam = new SqlParameter("@Result", DbType.Boolean);
//sqlParam.ParameterName = "@Result";
//sqlParam.DbType = DbType.Boolean;
sqlParam.Direction = ParameterDirection.Output;
Cmd.Parameters.Add(sqlParam);
Cmd.ExecuteNonQuery();
con.Close();
Response.Write(Cmd.Parameters["@Result"].Value);
}
问题:如何让它发挥作用?如何使用最少的资源使其工作?我在复制代码吗?我想以最有效/逻辑/正确的方式做到这一点。
编辑:
ALTER PROCEDURE [dbo].[usp_CheckEmailMobile]
( @Name VARCHAR(50),
@Email NVARCHAR(50),
@Password NVARCHAR(50),
@CountryCode INT,
@Mobile VARCHAR(50),
@Result BIT OUTPUT)
AS
BEGIN
IF EXISTS (SELECT COUNT (*) FROM AUser WHERE [Email] = @Email AND [Mobile] = @Mobile)
Begin
Set @Result=0; --Email &/or Mobile does not exist in database
End
ELSE
Begin
--Insert the record & register the user
INSERT INTO [AUser] ([Name], [Email], [Password], [CountryCode], [Mobile]) VALUES (@Name, @Email, @Password, @CountryCode, @Mobile)
Set @Result=1;
End
END
答案 0 :(得分:0)
ExecuteNonQuery返回受影响的行数。我认为你应该使用ExecuteScalar(因为你的程序只返回true或false)。并将executioncalar的结果转换为boolean。
而不是使用两个不同的过程,您可以将它们合并为一个。 proc将首先检查电子邮件和手机是否存在,如果为false则会添加用户,如果为true则不会添加用户并向您返回false。
答案 1 :(得分:0)
您可以通过usp_CheckEmailMobile
存储过程执行操作:
在存储过程中进行如下检查:
-- Check that record doesn't exist
IF NOT EXISTS (SELECT TOP 1 FROM AUser WHERE Email=@Email and Mobile=@Mobile)
-- Insert record
INSERT INTO [AUser] ([Name], [Email], [Password], [CountryCode], [Mobile])
VALUES (@Name, @Email, @Password, @CountryCode, @Mobile)
如果记录不存在,则会插入记录。您只需要将其他参数添加到此存储过程。
您可以使用True / False值并说“注册成功”'或者'用户已经存在'取决于返回的值。