首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

每隔三秒调用一次存储过程

2013-12-19 
每隔3秒调用一次存储过程怎么每隔3秒调用一次存储过程呢?代码怎么写呀?publicbooleangetSendMessageRecipi

每隔3秒调用一次存储过程
怎么每隔3秒调用一次存储过程呢?
代码怎么写呀?每隔三秒调用一次存储过程

public  boolean  getSendMessageRecipients()
{
Connection conn = null;
CallableStatement cs = null;
ResultSet rs = null;
boolean flag = true;
try
{
conn = DBControl.getConnection();
cs = conn.prepareCall("{call tb_sp_management_send_message(?,?,?)}");
    rs=cs.executeQuery();
} catch (Exception e)
{
logger.error("", e);
} finally
{
DbUtils.closeQuietly(conn, cs, rs);
}
return flag;
}

[解决办法]


  public void functionname(){
    Timer timer;
    timer.schedule(new TimerTask() {
      public void run() {
        getSendMessageRecipients();
      }
    }
    , 0L, SMSINTERVAL * 1000);//这里的时间自己改
  }


热点排行