验证用户的存储过程

create proc ch
@uid char(12),
@pwd char(32)
as
select count(*) from ND_admin where uid=@uid and pwd=@pwd

 

极其简单,返回一个数值,1就是验证通过,其他就是不通过

posted @ 2010-03-12 09:40  爱如少年  阅读(221)  评论(0编辑  收藏  举报