- 浏览: 1217 次
- 性别:
- 来自: 天津
最新评论
文章列表
多条件查询时,用<where>
<select id="findAllSelective" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from sys_user
<where>
<if test="id != null">
and id = #{id,jdbcType=BIGINT}
...
代码里写中文出现异常解决方法
- 博客分类:
- django笔记
统一用utf-8,
在views或models最顶上加入下面这行代码:
# -*-coding:utf-8 -*-
- 2009-10-08 14:58
- 浏览 505
- 评论(0)