国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

ASP調(diào)用存儲過程的技巧

2024-05-04 11:02:10
字體:
供稿:網(wǎng)友
1、最簡單的如下 
           Dim objConn 
    Set objConn = Server.CreateObject("ADOBD.Connection") 
    objConn.Open Application("Connection_String") 
    'Call the stored procedure to increment a counter on the page 
    objConn.Execute "exec sp_AddHit" 
沒有參數(shù),沒有返回,沒有錯(cuò)誤處理,就是這個(gè)了 

2、帶參數(shù)的一種調(diào)用 
objConn.Execute "exec sp_AddHit,'http://www.asp001.net', 1" 
請注意分割參數(shù),該方法也不返回記錄 

3、返回記錄的 
          Dim objConn 
    Dim objRs 
    Set objConn = Server.CreateObject("ADOBD.Connection") 
    Set objRs = Server.CreateObject("ADOBD.Recordset") 
    objConn.Open Application("Connection_String") 
    'Call the stored procedure to increment a counter on the page 
    objRs.Open objConn, "exec sp_ListArticles '1/15/2001'" 
    'Loop through recordset and display each article 
4、…… 
          Dim objConn 
          Dim objCmd 

'Instantiate objects 
Set objConn        = Server.CreateObject("ADODB.Connection") 
set objCmd        = Server.CreateObject("ADODB.Command") 
conn.Open Application("ConnectionString") 

With objCmd 
    .ActiveConnection = conn 'You can also just specify a connection string here 
    .CommandText = "sp_InsertArticle"  
    .CommandType = adCmdStoredProc 'Requires the adovbs.inc file or typelib meta tag 

    'Add Input Parameters 
    .Parameters.Append .CreateParameter("@columnist_id", adDouble, adParamInput, , columnist_id) 
    .Parameters.Append .CreateParameter("@url", adVarChar, adParamInput, 255, url) 
    .Parameters.Append .CreateParameter("@title", adVarChar, adParamInput, 99, url) 
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 淳安县| 虎林市| 拜泉县| 无为县| 禹城市| 商南县| 通州市| 兴仁县| 平陆县| 东山县| 阳东县| 德阳市| 桂东县| 宽甸| 新民市| 永泰县| 靖远县| 大同市| 灵丘县| 丰城市| 马公市| 福安市| 海丰县| 南木林县| 武宁县| 日喀则市| 梅河口市| 章丘市| 太和县| 长乐市| 北川| 和田县| 崇左市| 奈曼旗| 石景山区| 冀州市| 长兴县| 永登县| 长宁县| 龙里县| 汉源县|