使用Hibernate3写入MySQL Blob类型字段

HIbernate3写入MySQL 的Blob类型比写入Oracle简单多啦。以下是我在网上找到的代码,测试成功。

 

try{
Session session=HibernateSessionFactory.currentSession();
String filename="C:\\WINDOWS\\Rhododendron.bmp";
Imagelib image=new Imagelib();

FileInputStream fis=new FileInputStream(filename);
Blob blob=Hibernate.createBlob(fis);
image.setContent(blob);
Transaction tx=session.beginTransaction();
session.save(image);
tx.commit();
System.out.print("success");
}
catch(Exception e){
System.out.print("\n"+e.getMessage());
e.printStackTrace();
}
finally{
HibernateSessionFactory.closeSession();
}

你可能感兴趣的:(oracle,c,mysql,windows,Hibernate)