ASP之简化创建关闭记录集对象并创建使用简单的MSSQL存储过程

2018-09-06 13:11

阅读:472

  ASP技巧一则之简化创建关闭记录集对象并创建使用简单的MSSQL存储过程Byshawl.qiu

1.建造创建关闭记录集函数
2.在MSSQL查询分析器中创建简单的MSSQL存储过程
3.在ASP中应用步骤1,2

shawl.qiu
2006-8-26


1.建造创建关闭记录集函数

linenum
functioncreateRs(rs)
setrs=createObject(adodb.recordset)
endfunction

functioncloseRs(rs)
rs.close
setrs=nothing
endfunction

2.在MSSQL查询分析器中创建简单的MSSQL存储过程

linenum
createprocdbo.at_sbcat_t1
as
begin
select*fromctatsbcatorderbysbcat
end

3.在ASP中应用步骤1,2

linenum

<%dimrs
callcreateRs(rs)
withrs
.openexecdbo.at_sbcat_t1,conn
dountil.eof
response.writers(sbcat)&<br/>
.movenext
loop
endwith
callcloseRs(rs)
%>


评论


亲,登录后才可以留言!