Mybatis

Posted snowmountain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis相关的知识,希望对你有一定的参考价值。

mybatis   代替了jdbc  对其实现了封装

计算机 右键 管理 服务和应用程序 服务 可以查看安装的mysql的服务  5.几的mysql服务

在连接下新建一个数据库   字符集是 utf8 -- UTF-8 Unicode    排序规则  utf8_general_ci

在其中新建一个表

到底是用的时候立马就掌握,还是到时候再特意统一学习,显然是前者比较实际,因为现实性并没有那么多时间来统一学习,再者理论与实践结合会更有效.

【如果存在表则删除】

drop  table  if  exists  ‘tablename‘;

drop  table  if  exists  ‘user‘ ;

drop  table  if  exists  ‘user‘ ;

 

【创建表user】

create  table  ‘user‘ (

  ‘id‘  int(11)  not  null   auto  increment ,

  ‘id‘  int(11)  not  null  auto  increment ,

       ‘username‘  varchar(32)  not  null comment  ‘用户名称‘ ,

  ‘username‘  varchar(32)  not  null  comment  ‘用户名称‘ ,

  ‘birthday‘  date  default  null   comment  ‘生日‘ ,

  ‘birthday‘  date  default  null  comment  ‘生日‘  ,

  ‘sex‘  char(1)  defaule  null  comment  ‘性别‘  ,

  ‘sex‘  char(1)  default  null  comment  ‘性别‘,

  ‘address‘  varchar(256)  default null  comment  ‘地址‘,

  ‘address‘  varchar(256)  default null  comment ‘地址‘ ,

  primary key (‘id‘)

)

 

create  table  ‘myfirsttable‘(

  ‘userid‘   int(10)                not  null      auto  increment   comment  ‘用户的id‘ ,

  ‘username‘  varchar(20)  not  null                                  comment  ‘用户名称‘  , 

  ‘userage‘  int(2)           default  null                comment   ‘用户年龄‘

 

 

)

【插入几条数据】

insert into ‘tablename‘  values  (‘id‘,  ‘username‘, ‘birthday‘ , ‘sex‘ ,‘address‘ );

 

以上是关于Mybatis的主要内容,如果未能解决你的问题,请参考以下文章

MybatisMyBatis 注解方式的基本 用法

MybatisMyBatis之缓存

MyBatisMyBatis的增删改查

Mybatismybatis登录实例

MybatisMybatis基础(中)

MybatisMybatis缓存