只想知道 发表于 2015-1-16 23:11:15

ASP网页设计ASP 挪用 ORACLE存储历程并前往了局集

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能做到,例如银行安全控件

爱飞 发表于 2015-1-20 08:08:23

我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。

分手快乐 发表于 2015-1-27 14:54:03

它可通过内置的组件实现更强大的功能,如使用A-DO可以轻松地访问数据库。

老尸 发表于 2015-2-2 19:31:11

你可以通过继承已有的对象最大限度保护你以前的投资。并且C#和C++、Java一样提供了完善的调试/纠错体系。

愤怒的大鸟 发表于 2015-2-8 04:35:33

那么,ASP.Net有哪些改进呢?

冷月葬花魂 发表于 2015-3-7 11:07:17

我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标.

深爱那片海 发表于 2015-3-15 01:51:53

从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了

海妖 发表于 2015-3-21 15:58:13

Response:从字面上讲是“响应”,因此这个是服务端向客户端发送东西的,例如Response.Write
页: [1]
查看完整版本: ASP网页设计ASP 挪用 ORACLE存储历程并前往了局集