<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"><!-- namespace:接口的全路径名 --><mappernamespace="org.dao.IDeptDao"><!-- 查询全部数据 --><selectid="getDeptAll"resultType="org.entity.Dept">select * from dept</select><!-- 添加部门 --><insertid="saveEntity"parameterType="org.entity.Dept">insert into dept (id,name,loc) values(#{id},#{name},#{loc})</insert><!-- 修改部门 --><updateid="updateEntity"parameterType="org.entity.Dept">update dept set name=#{name},loc=#{loc} where id=#{id}</update><!-- 删除部门 --><deleteid="delEntity"parameterType="org.entity.Dept">delete from dept where id = #{id}</delete><!-- 根据编号查询 --><selectid="getDeptById"resultType="org.entity.Dept"parameterType="int">select * from dept where id = #{id}</select></mapper>
查看mysql编码:一、 代码示例:mysql> show variables like character_set_%;------------------------------------------------------| variable_name | value |------------------------------------------------------| character_set_client | latin1 || cha…