|
- if (DZQM != null && !"".equals(DZQM) && !"null".equals(DZQM)) {
- String sql2 = "update SPYJB set DZQM='" + DZQM + "' where fid = '" + spyjID + "' ";
- HashMap<String, String> sqlMap2 = new HashMap<String, String>();
- sqlMap2.put(DatabaseProduct.ORACLE.name(), sql2);
- SQL.executeUpdate(sqlMap2, null, "/app/dataSource/baapp/data");
- return DZQM;
- }
复制代码 这段代码执行过后SQL里面的的SPYJB有被更新吗?sqlMap2.put(DatabaseProduct.ORACLE.name(), sql2);这一行代码是干嘛用的...
|
|