Posted on 2009-02-03 17:12
MyYate 阅读(270)
评论(0) 编辑 收藏 所属分类:
Hibernate
动态创建表:
public static void createTable(){
Configuration conf = new Configuration().add().configure();
SchemaExport dbExport = new SchemaExport(conf);
dbExport.setOutputFile("xxx.log"); //生成的脚本输出到哪里
dbExport.create(true, true);
}