Пример #1
0
 public void updateByMacAndDevId(Device t, String devId) throws SQLException {
   qr.update(
       "update client set ip=?,token=?,outgoing=?,incoming=?,uprate=?,downrate=?,login_count=?,update_time=?,login_time=? where ap_id =(select ap_id from ap where dev_id=?) and mac=?",
       new Object[] {
         t.getIp(),
         t.getToken(),
         t.getOutgoing(),
         t.getIncoming(),
         t.getUprate(),
         t.getDownrate(),
         t.getLogin_count(),
         t.getUpdate_time(),
         t.getLogin_time(),
         devId,
         t.getMac()
       });
 }
Пример #2
0
 /**
  * 通过dev_id增加device
  *
  * @param device
  * @param devId
  * @throws SQLException
  */
 public void addByDevId(Device t, String devId) throws SQLException {
   qr.update(
       "insert into client(ap_id,kind,ip,mac,token,outgoing,incoming,uprate,downrate,status,login_count,update_time,login_time) values((select ap_id from ap where dev_id=?),?,?,?,?,?,?,?,?,?,?,?,?)",
       new Object[] {
         devId,
         t.getKind(),
         t.getIp(),
         t.getMac(),
         t.getToken(),
         t.getOutgoing(),
         t.getIncoming(),
         t.getUprate(),
         t.getDownrate(),
         t.getStatus(),
         t.getLogin_count(),
         t.getUpdate_time(),
         t.getLogin_time()
       });
 }
Пример #3
0
 @Override
 public int add(Device t) throws SQLException {
   return qr.update(
       "insert into client(ap_id,kind,ip,mac,token,outgoing,incoming,uprate,downrate,status,login_count,update_time,login_time) values(?,?,?,?,?,?,?,?,?,?,?,?,?)",
       new Object[] {
         t.getAp_id(),
         t.getKind(),
         t.getIp(),
         t.getMac(),
         t.getToken(),
         t.getOutgoing(),
         t.getIncoming(),
         t.getUprate(),
         t.getDownrate(),
         t.getStatus(),
         t.getLogin_count(),
         t.getUpdate_time(),
         t.getLogin_time()
       });
 }