|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当然了,现在国内CRM厂商的产品与其说是CRM,但从至少从我的角度分析上来看,充其量只是一个大型的进销存而已了,了解尚浅,不够胆详评,这里只提技术问题
看过网上很多多少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>
无法实现跨操作系统的应用。当然这也是微软的理由之一,只有这样才能发挥ASP最佳的能力。可是我却认为正是Windows限制了ASP,ASP的概念本就是为一个能让系统运行于一个大的多样化环境而设计的; |
|