srping跟新blob字段例子


--网上找了一些跟新blob字段的例子,麻烦自己试了下这样其实可以实现效果,给需要的同学吧
public void updateACCEPTANCETIME(Map map) {
String innerLastxml=map.get("innerLastxml").toString();
String  INF_ID=map.get("INF_ID").toString();
String sql="update INF_PF_SEND_IOM set AFTERTRANSXML=? where INF_ID=?";
byte[] bytes = map.get("innerLastxml").toString().getBytes();
int flag=  jobJdbcTemplate.update(sql, new Object[]{bytes,INF_ID});
}

public static void main(String[] args) {
PfDao t = new PfDaoImpl();
Map map = new HashMap();
map.put("INF_ID",312 );
map.put("innerLastxml", "我的中国们");
t.updateACCEPTANCETIME(map);


}

你可能感兴趣的:(blob)