如果我的数据是byte[] 类型的
且用 属性
@Column("dt")
private Blob config;
那添加数据的时候用
new SimpleBlob(tmp)
只能先转文件这种方式才能操作么
@wendal
public PlotConfigEntity add(long uid, int sid, int type, byte[] config) {
PlotConfigEntity entity = new PlotConfigEntity();
entity.setUid(uid);
entity.setType(type);
File tmp = Jdbcs.getFilePool().createFile(".big");
Files.write(tmp, config);
entity.setConfig(new SimpleBlob(tmp));
return insert(uid, sid, entity);
}