|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。oracle|存储历程ASP挪用ORACLE存储历程并前往了局集
看过网上很多多少ASP挪用ORACLE的办法,可是没有特好特间接的器材,以是总结各家的器材最初得出的一个本人必要的办法,感到也对照公共以是特此公布
###################################################
oracle的存储历程
###################################################
--创立包头
createorreplacepackagepck_as
as
typet_product_idistableofnumber
indexbybinary_integer;
typet_serial_noistableofvarchar(300)
indexbybinary_integer;
typet_buy_dateistableofdate
indexbybinary_integer;
procedureallsfc
(
product_idoutt_product_id,
serial_nooutt_serial_no,
buy_dateoutt_buy_date
);
--procedureallsfc1;
endpck_as;
--创立包体
createorreplacepackagebodypck_as
as
procedureallsfc
(
product_idoutt_product_id,
serial_nooutt_serial_no,
buy_dateoutt_buy_date
)
is
cursorcur_sfc_tbl_product_regis
selectproduct_id,serial_no,buy_datefromsfc_tbl_product_reg;
inumberdefault1;
begin
foronrecordincur_sfc_tbl_product_reg
loop
product_id(i):=onrecord.product_id;
serial_no(i):=onrecord.serial_no;
buy_date(i):=onrecord.buy_date;
i:=i+1;
endloop;
end;
end;
###################################################
ASP的挪用
###################################################
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312">
<title>无题目文档</title>
</head>
<body>
<%
dimstr_ora
dimobjconn_ora
str_ora="Driver={MicrosoftODBCforOracle};Server=ora192;uid=dwuser;pwd=family.samsung.com.cn"
setobjconn_ora=server.CreateObject("adodb.connection")
objconn_ora.connectionstring=str_ora
objconn_ora.CursorLocation=3
objconn_ora.open
dimstrsql
setrs1=server.CreateObject("ADODB.RecordSet")
strsql="{callpck_as.allsfc({resultset90000,product_id,serial_no,buy_date})}"
setobjcomm1=server.CreateObject("adodb.command")
objcomm1.activeconnection=objconn_ora
objcomm1.commandtype=1
objcomm1.commandtext=strsql
setrs1=objcomm1.execute
whilenotrs1.eof
response.Write(rs1(0)&"|"&rs1(1)&"|"&rs1(2)&"|<BR>")
rs1.movenext
wend
%>
</body>
</html>
</p>优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件 |
|