JSP编程

关注公众号 jb51net

关闭
首页 > 网络编程 > JSP编程 > Hibernte 生成sql

根据Hibernte的cfg文件生成sql文件

作者:

今天尝试用Hibernate的配置文件生成数据库脚本,结果居然成功了,代码很简单
复制代码 代码如下:

public void exportHibernteToSQL(){
Configuration cfg=new Configuration().configure("/hibernate.cfg.xml");
SchemaExport schemaExport = new SchemaExport(cfg);
schemaExport.setOutputFile("d:/mysql_sql.sql");
schemaExport.create(true, false);
}

注意:Hibernate的配置文件是什么数据库方言和驱动,将生成什么数据库脚本。
阅读全文