| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1443 人关注过本帖
标题:myconn.execute什么意思?
取消只看楼主 加入收藏
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
 问题点数:0 回复次数:3 
myconn.execute什么意思?
myconn.execute("delete*from online where ltime<now-0.005")

请问这里的myconn.execute我需要定义吗?具体什么意思?谢谢各位了!!
搜索更多相关主题的帖子: myconn execute 
2005-12-21 09:42
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
得分:0 
麻烦我想问一下,如果myconn我不定义,该怎么做?谢谢!!因为我看别人的程序,但是没有找到定义的地方。所以是否可以换个语句?

2005-12-21 09:47
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
得分:0 
<%

Set myconn = Server.CreateObject("ADODB.Connection")
myconn.open sql,conn,3,2
%>

这样写对吗

2005-12-21 11:11
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
得分:0 

我做的是在线统计,(目前有几个人在线),麻烦大侠帮我看看,不知道怎么,

老提示<%myconn.execute("delete*from online where ltime<now-0.005")这行错误。请大家给些提示!谢谢。

<%
Server.ScriptTimeout="10"
Set myconn = Server.CreateObject("ADODB.Connection")
myconn.open sql,conn,3,2
%>
<%myconn.execute("delete*from online where ltime<now-0.005")
lgname=Request.Cookies("lgname")
ip=request.servervariables("remote_addr")
if lgname="" then
set jilu=myconn.execute("select ip from online where ip='"&ip&"'")
if jilu.eof then
set jilu=nothing
myconn.execute("insert into online (ip,ltime)VALUES('"&ip&"','"&now&"')")
else
myconn.execute("update online set ltime='"&now&"' where ip='"&ip&"'")
end if
end if
if lgname<>"" then
set ujilu=myconn.execute("select name from online where name='"&lgname&"'")
if ujilu.eof then
set ujilu=nothing
myconn.execute("insert into online (name,ltime)VALUES('"&lgname&"','"&now&"')")
else
myconn.execute("update online set ltime='"&now&"' where name='"&name&"'")
end if
end if
set aaa1=myconn.execute("Select count(ltime)from online where name<>''")
usno=aaa1(0)
set aaa1=nothing
set aaa2=myconn.execute("Select count(ltime)from online")
lineno=aaa2(0)
nusno=lineno-usno
%>

2005-12-21 11:59
快速回复:myconn.execute什么意思?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026763 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved