hibernate自动导出数据库表

public static void main(String[] args) throws Exception{          //配置环境,分析xml映射文件
    Configuration conf= new Configuration().addClass(User.class);
    
    //生成并输出sql到文件(当前目录)和数据库
    SchemaExport dbExport=new SchemaExport(conf);
    dbExport.create(true, true);
}
 
 
上一篇:通量电容器?流式SQL中的时态表和连接


下一篇:如何将LINQ查询到的结果由匿名类型var转换成DataTable对象