Examples of sendInsert()


Examples of galena.addins.modules.database.DB.DBConnection.sendInsert()

      }
    }
  }
  protected void logPresence(PresenceWrapper oldWrapper) {
    DBConnection db = this.db.getDBConnection(false);
    int id = db.sendInsert(null,"goim_presence_log","jid,resource,mode,start,\"end\"",
        StringUtils.parseBareAddress(oldWrapper.presence.getFrom()).toLowerCase(),
        StringUtils.parseResource(oldWrapper.presence.getFrom()),
        oldWrapper.presence.getMode().toString(),
        oldWrapper.date,
        new Date());
View Full Code Here

Examples of galena.addins.modules.database.DB.DBConnection.sendInsert()

        if(status.gameId.equals("lfss2")) {
          destination = status.atts.get("servername");
        } else {
          destination = GameStatusExtension.formatSocketAddress(status.target);
        }
        db.sendInsert(null,"goim_server","game,destination,presence",gameId,destination,id);
        db.commit();
      }
    }
    db.close();
  }
View Full Code Here

Examples of galena.addins.modules.database.DB.DBConnection.sendInsert()

    {
      List<Map<String,Object>> jidentry = db.getListOfMaps("SELECT * FROM goim_stats_jid WHERE jid = ?",jid);
      if(jidentry != null && jidentry.size() > 0)
        jidID = (Integer)jidentry.get(0).get("id");
      else
        jidID = db.sendInsert(args.getUser(),"goim_stats_jid","jid",jid);
    }
    boolean dontlogthisday = false;
    // Now check when the last day entry was made.
    List<Map<String,Object>> listOfPresenceLog;
    {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.