<!--#include file="inc\public.asp"-->
<!--#include file="inc\conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</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>
相关专题
- 存储过程 (2956篇文章)
- 网络存储—光纤通道 (3015篇文章)
- Oracle 10g基础应用 (4447篇文章)
- 服务器存储专栏 (8299篇文章)
- oracle 存储过程 (71篇文章)
- asp 存储过程 (67篇文章)
- ASP连接十一种数据库的常用语法 (47次浏览)
- ASP连接数据库错误解决办法新法 (32次浏览)
- Asp常见问题(新手) (0次浏览)
- asp编译成dll-图形化教程 (0次浏览)
- ASP编程入门进阶 (0次浏览)
- Asp备份与恢复SQL Server数据库 (0次浏览)
- Asp+的几个特点 (0次浏览)
- ASP:在结果中搜索 (0次浏览)
- asp 中对 ip 进行过滤限制函数 (0次浏览)
- ASP 指南 (0次浏览)



