论坛首页 移动开发技术论坛

Hibernate_ExportDB

浏览 1745 次
该帖已经被评为新手帖
作者 正文
   发表时间:2008-05-14   最后修改:2010-10-29
iOS
Auto Create Table Code:


import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;

/**
 * 
 * @author skyqiang
 *
 */
public class ExportDB {
	public static void main(String[] args) {
		
		//read configuration file
		Configuration config = new Configuration();
		
		//create SchemaExport object
		SchemaExport export = new SchemaExport(config);
		
		//create table of database
		export.create(true, true);
		
	}
	
}
论坛首页 移动开发技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics