文章列表
/*
SQLyog 企业版 - MySQL GUI v5.02
主机 - 5.0.67-community-nt : 数据库 - cardb
*********************************************************************
服务器版本 : 5.0.67-community-nt
*/
create database if not exists `cardb`;
USE `cardb`;
/*数据表 `cheliang` 的表结构*/
DROP TABLE IF EXISTS `cheliang`;
...
- 2009-05-16 10:01
- 浏览 920
- 评论(0)
package com.infoer.cardb.model;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
public class ExportDB {
public static void main(String[] args) {
//读取hibernate.cfg.xml文件
Configuration cfg = new Configuration().configure();
SchemaExpor ...
- 2009-05-16 09:58
- 浏览 735
- 评论(0)