码迷,mamicode.com
首页 > Web开发 > 详细

Hibernate 核心实现原理

时间:2016-05-27 23:37:58      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

1、创建sql脚本

drop database if exists myhibernate;
create database myhibernate;
use myhibernate;
drop table if exists member;
create table member(
	mid int  not null auto_increment,
	password varchar(32) not null,
	birthday datetime,
	salary double,
	constraint pk_mid primary key(mid)
);

2、

Hibernate 核心实现原理

标签:

原文地址:http://www.cnblogs.com/denied/p/5536362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!