C# 中调用SQL存储过程实现登录认证代码_C/C++语言_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

C# 中调用SQL存储过程实现登录认证代码

作者:黑客防线网安C/C++教程基地 来源:黑客防线网安C/C++教程基地 浏览次数:0

本篇关键词:登录认证代码实现
黑客防线网安网讯:   存储过程如下:set ANSI_NULLS ONset QUOTED_IDENTIFIER ONGOALTERprocedure [dbo].[security_check](@user_sort int,@userID nchar(16),@userPWD nchar(16) )asdeclare @uid nchar(16);...
   存储过程如下:
set ANSI_NULLS ONset QUOTED_IDENTIFIER ONGOALTER
procedure [dbo].[security_check](@user_sort int,@userID nchar(16),@userPWD nchar(16) )
as
declare @uid nchar(16);
declare @pwd nchar(16);
declare @state bit;
set @state=0;
if( @user_sort=1)
begin 
     declare  cursor_temp cursor local for   --定义游标
               select 学号,密码   from 学生表  where 学号 = @userID and 密码 = @userPWD;  
     open cursor_temp;      --打开游标
      fetch cursor_temp into @uid,@pwd;    --推进游标
      close cursor_temp;                   --关闭游标
 end
if( @uid =@userID and @pwd=@userPWD )
        begin
                set @state=1; 
                return @state;
        end;
else
        begin
        set @state=0;
        return @state;
end;                 
----------------------------------------------------------------------------------------------------------------------------------------------
C#代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
namespace 密码验证
{
    class security
    {
        public static DataSet  check(string uid)
        {
            SqlConnection mySqlConnection = new SqlConnection("server=.\SqlExpress;database=XSXK;integrated security=SSPI");
            mySqlConnection.Open();
            SqlCommand mySqlCommand = mySqlConnection.CreateCommand();
            mySqlCommand.CommandText = "select * from 学生表 where 学号 =" + uid;
            SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
            DataSet myDataSet = new DataSet() ;
       &
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-15185-1.html
网站维护教程更新时间:2012-04-04 22:51:23  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer