欢迎光临
我们一直在努力

ASP调用oracle存储过程-ASP教程,ASP应用

建站超值云服务器,限时71元/月

<!–#include file=”inc\public.asp”–>
<!–#include file=”inc\conn.asp”–>

<html>
<head>
<meta http-equiv=”content-type” content=”text/html; charset=gb2312″>
<title></title>

</head>

<body>
<%
———————————–
dim sp_common
set sp_common = server.createobject(“adodb.command”)
 with sp_common     
  .activeconnection = conn 
  .commandtext = “cd_update_log”
  .parameters.append .createparameter(“@inputremark”, advarchar, adparaminput,50,”联通.ye”)
  .parameters.append .createparameter(“@msg”, adinteger, adparamoutput)
 .execute
 end with
 
msg=sp_common(“@msg”)
———————————–
response.write “<hr>” & msg
response.end

if 1+1=3 then

———————————-table
 create table cd_bill_log
 (
   bill_id      number,
   deal_emp_id  number,
   reach_date   date,
   done_date    date,
   bill_status  varchar2(10),
   deal_dept_id number,
   sign         number,
   remark       varchar2(50)
 )
 ;
———————–proc
create or replace procedure
cd_update_log(inputremark varchar2,msg out float)
 as
 begin
 
   update cd_bill_log a
   set a.remark =inputremark   –to_char(sysdate,mi:ss)
   where a.bill_id=45;
    msg:=1;
   commit;
end;

end if
%>

</body>
</html>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP调用oracle存储过程-ASP教程,ASP应用
分享到: 更多 (0)