mysql支持人大金仓的注意事项
1、字符串判断为空
问题:insert into table1 (c1) values ('') -- 报错。
修改方案:
修改kingbase.conf 中的ora_input_emptystr_isnull=true 改为false
2、空字符是否合理
问题:select 'a'||chr(0)||'b' from dual; -- 报错
修改方案:
修改kingbase.conf 中的ignore_char_null_check=true
1、字符串判断为空
问题:insert into table1 (c1) values ('') -- 报错。
修改方案:
修改kingbase.conf 中的ora_input_emptystr_isnull=true 改为false
2、空字符是否合理
问题:select 'a'||chr(0)||'b' from dual; -- 报错
修改方案:
修改kingbase.conf 中的ignore_char_null_check=true