当前位置: 技术问答>java相关
jsp程序怎么统计在线人数?
来源: 互联网 发布时间:2015-01-08
本文导语: 我在用jsp做个论坛,怎么能够知道在线人数呢? | 精华板有,我测试过,可用。 | 有一种方案如下: openDb.executeQuery("update onlineuser set logondate=sysdate where username='"+name+"'"); ...
我在用jsp做个论坛,怎么能够知道在线人数呢?
|
精华板有,我测试过,可用。
|
有一种方案如下:
openDb.executeQuery("update onlineuser set logondate=sysdate where username='"+name+"'");
如果用户在线的话,把logondate记为当前时间
openDb.executeQuery("delete from onlineuser where (logondate+1/360)
openDb.executeQuery("update onlineuser set logondate=sysdate where username='"+name+"'");
如果用户在线的话,把logondate记为当前时间
openDb.executeQuery("delete from onlineuser where (logondate+1/360)