如何在asp調用資料庫預存程序

來源:互聯網
上載者:User
預存程序|資料|資料庫 <%Set Dataconn = Server.CreateObject("ADODB.Connection")
'建立連線物件
Dataconn.Open "DSN=SinoTrans;SERVER=APP_SERVER;UID=sa;PWD=;APP=Microsoft(R) Developer Studio;WSID=APP_SERVER;Regional=Yes"
Set cmdTemp = Server.CreateObject("ADODB.Command")
'建立命令對象
Set rst = Server.CreateObject("ADODB.Recordset")
'建立記錄集對象
cmdTemp.CommandText = "dbo.pd_test" '預存程序名稱
cmdTemp.CommandType = 4
'命令類別為4,表示為預存程序
Set cmdTemp.ActiveConnection = Dataconn
Set tmpParam = cmdTemp.CreateParameter("Return Value", 3, 4, 4)
cmdTemp.Parameters.Append tmpParam
Set tmpParam = cmdTemp.CreateParameter("@BeginDate", 135, 1, 16, riqi)
'建立輸入參數對象
cmdTemp.Parameters.Append tmpParam
rst.Open cmdTemp, , 1, 3
'產生查詢結果
%>
這裡調用的預存程序為pd_test,這種是ADO中提供的標準方法,但存在一個問題,就是當在預存程序中有兩個以上的SELECT語句,但從邏輯上又不可能同時執行的時候,ADO會提示你預存程序中SELECT語句太多,解決方案是直接用ADO的CONNECTION對象的EXECUTE方法直接執行預存程序,如下:
<%
Set Dataconn = Server.CreateObject("ADODB.Connection")
'建立連線物件
Dataconn.Open "DSN=SinoTrans;SERVER=APP_SERVER;UID=sa;PWD=;APP=Microsoft(R) Developer Studio;WSID=APP_SERVER;Regional=Yes"
ss = "EXECUTE dbo.pd_test " & "'" & riqi1 & "'"
Set rs = dataconn.Execute(ss)
%>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.