国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 霍林郭勒市| 康马县| 六枝特区| 日喀则市| 清原| 上蔡县| 招远市| 四子王旗| 合江县| 厦门市| 达孜县| 聂拉木县| 吴江市| 乌拉特后旗| 阳新县| 怀集县| 德保县| 广灵县| 南投市| 同德县| 航空| 紫阳县| 岳阳市| 无极县| 贵州省| 印江| 阿拉善右旗| 虹口区| 平度市| 囊谦县| 常德市| 浠水县| 吉水县| 左权县| 张家港市| 永吉县| 开封市| 长宁县| 太原市| 昭通市| 鸡西市|