利用SQLSERVER預存程序實現ASP使用者身分識別驗證

來源:互聯網
上載者:User
server|sqlserver|預存程序 在我們編寫使用者身分識別驗證程式中,很容易用ASP調用SQL語句來檢索資料表中是否有條件相符的記錄,然後再用ASP進行相關處理。

  條條道路通羅馬!當然,我們也可以用SQL SERVER資料庫的預存程序來輕鬆實現這個功能。雖然相對而言較複雜,但其效率的提升是很明顯的,因為預存程序是在資料庫中已經編譯好的一段程式,我們只需用ASP將其所用的各種參數正確傳遞就行了。
  
  本文也主要是想通過一個簡單的案例,向大家介紹一下如何在ASP中調用帶參數的預存程序。希望大家能從中得到更多的啟迪。

  第一步,建立資料表userinfo
id int(4) not null,
fullname varchar(50) not null,
password varchar(20) not null,
nikename varchar(50) not null

  第二步,建立預存程序usercheck
CREATE procedure usercheck
@infullname varchar(50),
@inpassword varchar(50),
@outcheck char(3) OUTPUT
as
if exists(select * from userinfo where fullname=@infullname and password=@inpassword)
select @outcheck='yes'
else
select @outcheck='no'

  註:這裡建立了一個帶三個參數的預存程序,第一個參數@infullname,這是個輸入參數,(使用者名稱);第二個參數@inpassword,也是個輸入參數,(密碼);第三個參數@outcheck,這是個輸出參數,(是否存在此使用者),當定義輸出參數時在資料類型後必須加上"OUTPUT",字樣。
  
  然後,我們帶上前兩個輸入參數在SQL語句中檢索是否存在合格使用者,如果存在,輸出參數的值為"yes",否則為"no"。

  
  第三步,編寫ASP程式,調用預存程序

<%
'表單提交標誌
if request("ok")=1 then

'建立資料庫連接
Set Comm=Server.CreateObject("ADODB.Command")
Comm.ActiveConnection="DSN=localserver;UID=sa;PWD=;Database=chaiwei"

'以comm對象建立預存程序串連,4代表連線類型為預存程序
Comm.CommandText="usercheck"
Comm.CommandType=4

    '以p1為名稱建立comm對象的parameter方法。將第一個參數fullname追加到p1集合中
    'fullname 調用的第一個參數的名稱
    '200 參數類型 varchar型
    '1 參數流向 輸入,輸入為1,輸出為2
    '50 參數的長度 50
    'request("fullname") 賦參數出始值

Set p1=Comm.CreateParameter("fullname",200,1,50,request("fullname"))
Comm.Parameters.Append p1


'以p1為名稱建立comm對象的parameter方法。將第二個參數password追加到p1集合中
'具體同上

Set p1=Comm.CreateParameter("password",200,1,20,request("password"))
Comm.Parameters.Append p1


'以p1為名稱建立comm對象的parameter方法。將第三個參數check追加到p1集合中
'129 參數類型 char型
'2 參數流向 輸出
'3 參數長度 3
Set p1=Comm.CreateParameter("check",129,2,3)
Comm.Parameters.Append p1


'運行預存程序
Comm.Execute


'提出結果,進行處理
if comm("check")="yes" then
response.write "歡迎進入系統! 使用者名稱:" & comm("fullname") & " 密碼:" & comm("password")
else
response.write "對不起,您尚未註冊!"
end if

'釋放串連
Set Comm=nothing
else

'表單部份
%>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.