Пример #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
 /**
  * 通过mac获取device
  *
  * @param device
  * @return
  * @throws SQLException
  */
 public Device findByMacAndDevId(Device device, String devId) throws SQLException {
   List<Device> query =
       qr.query(
           "select * from client where ap_id =(select ap_id from ap where dev_id=?) and mac=?",
           new BeanListHandler(Device.class),
           new Object[] {devId, device.getMac()});
   if (query.size() == 0) {
     return null;
   }
   return query.get(0);
 }
Пример #3
0
 public void add(String devId, String mac, String token) throws SQLException {
   Device d = new Device();
   qr.update(
       "insert into client(ap_id,kind,ip,mac,token,incoming,outgoing,status,login_count,update_time,login_time) values((select ap_id from ap where dev_id=?),?,?,?,?,?,?,?,?,?,?)",
       new Object[] {
         devId,
         d.getKind(),
         d.getIp(),
         mac,
         token,
         d.getIncoming(),
         d.getOutgoing(),
         d.getStatus() + "",
         d.getLogin_count(),
         d.getUpdate_time(),
         d.getLogin_time()
       });
 }
Пример #4
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()
       });
 }
Пример #5
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()
       });
 }
Пример #6
0
 public void update(Device device, String token) throws SQLException {
   qr.update(
       "update client set token=? where ap_id =? and mac=?",
       new Object[] {token, device.getAp_id(), device.getMac()});
 }