zoukankan      html  css  js  c++  java
  • maximo开发小结

    maximo的后台开发 从0开始的  就把自己写的一些代码放者

    1. setWhere 的效果是在原有的sql上添加一个and 以及这个条件mboSetRemote.setWhere("ENDTEST<="+SqlFormat.getDateFunction(inputRemoveDate));

    这个加完的效果就是seletc * from xxx where (endtest <=值) and (原有条件)

    2.app designer里新增对话框的时候,输入项一般是新增一个non persistence的table,把所有新增的放在这里

    3.重启服务的时候如果失败报数据库在备份

    select * from MAXVARS where varname='CONFIGURING';

    Check the VARVALUE returned. It will be a '1' to signify that configdb is running . If it is not, then do not continue and call into support to report the error.

    update MAXVARS set varvalue='0' where varname='CONFIGURING';

    This will reset the flag that signifies configdb to be running.

    Maximo should now start.

  • 相关阅读:
    大话设计模式--中介者模式
    大话设计模式--职责链模式
    大话设计模式--命令模式
    大话设计模式--桥接模式
    迷宫求解
    stuct、class、typedef
    软件测试
    Scrapy初探
    python练习
    链表基础
  • 原文地址:https://www.cnblogs.com/heroinss/p/12504991.html
Copyright © 2011-2022 走看看