|
版本: |
|
小版本号: |
|
|
|
数据库: |
|
服务器操作系统: |
|
应用服务器: |
|
客户端操作系统: |
|
浏览器: |
|
|
|
- String ksql = "select t.DWMC from YW_CHDW t where t.ZT = '1' and (t.SFZX is null or t.SFZX = '否') and (t.SFJZ is null or t.SFJZ = '否')";
- String xx = null;
- Table table = SQL.select(ksql, null, "/rightResearch/main/data", null);
- Iterator<Row> iter = table.iterator();
- while (iter.hasNext()) {
- Row row = iter.next();
- xx = row.getString("DWMC");// sql时字段必须大写
- }
- return xx;
复制代码 Exception in thread "main" com.justep.exception.BusinessException: 编码: JUSTEP150025; 提示: 业务服务器启动出错, UtilImplement还未被实例化
at com.justep.exception.BusinessException.create(Unknown Source)
at com.justep.util.Utils.check(Unknown Source)
at com.justep.model.UtilImplement.instance(Unknown Source)
at com.justep.model.ModelUtils.getModel(Unknown Source)
at com.justep.system.data.SQL.select(Unknown Source)
at com.justep.system.data.SQL.select(Unknown Source)
at Main.getDatebySQL(Main.java:660)
at Main.main(Main.java:292)
|
|