因为Mysql的数据库的主键自增特性,oracle的没有主键自增。
1.表结构需要改变。
2.实体类需要更改数据类型。
3.对一些方法的传参,入参,返回值的类型需要修改。
前端代码:
问题一:前端原来一些方法function()的参数是number类型
js数据类型都有什么?
答:js数据类型一共有7种,两大类:原始类型,引用类型(对象)
原始类型包括:boolean, null,undefined,number,string,symbol
因为一些表的主键变为varchar类型了,然后导致传递的参数不被识别报错,例如下面的点击事件:
数据库是mysql时:btn.attr(“onclick”, ‘resetPassword(’ +id+’)’);
数据库是oracle时:btn.attr(“onclick”, ‘resetPassword(’’ +id+’’)’);
需要对原来参数是number的方法改造,将参数进行转换成String类型
var resetPassword = "";
if($.inArray("back:user:password", pers) >= 0){
var btn = $("<button class='layui-btn layui-btn-xs'><i class='layui-icon'>重置密码</i></button>");
btn.attr("onclick", 'resetPassword(\'' +id+'\')');
//注意字符串传值对应的方法加\'进行处理
resetPassword = btn.prop("outerHTML");
}
后端:
问题一:
模糊分页查询的Mapper进行修改:因为两者的查询方法和传参计算的的逻辑不相同
mysql的模糊查询+分页代码:
<sql id="where">
<where>
<if test="name != null and name != ''">
<bind name="_name" value="'%' + name + '%'"/>
and t.name like #{_name}
</if>
</where>
</sql>
<select id="findData" resultType="SysRole">
select * from sys_role t
<include refid="where" />
order by t.id desc
<if test="start != null and start >= 0 and length != null and length > 0">
limit #{start}, #{length}
</if>
</select>
oracle的模糊查询+分页代码:
<select id="findData" resultType="SysRole">
select *
from
(
SELECT
D.*, ROWNUM RN
FROM
(
SELECT *
FROM
sys_role
<where>
<if test="name != null and name != ''">
<bind name="_name" value="'%' + name + '%'"/>
and name like #{_name}
</if>
</where>
) D
WHERE ROWNUM <= #{length}
)
WHERE RN >= #{start}
</select>
数据库需要注意的地方:
因为mysql是主键自增,转化为oracle之后要添加序列;
create sequence menu_seq start with 1 increment by 1;
create or replace trigger menu_trigger
before insert on menu
for each row
begin
select menu_seq.nextval into :new.id from dual;
end ;