使用AL32UTF8字符集遇到的问题
客户端的字符集也设置为AL32UTF8,执行语句时出现一下问题:
SQL> update t_port_permission set permission_name='删除入库' where permission_name='123';
ERROR:
ORA-01756: quoted string not properly terminated
SQL> update t_port_permission set permission_name='删除管理员' where permission_name='123';
1 row updated.
SQL> commit;
Commit complete.
SQL> update t_port_permission set permission_name='管理员管理' where permission_name='234';
ERROR:
ORA-01756: quoted string not properly terminated
SQL> update t_port_permission set permission_name='操作员' where permission_name='234';
1 row updated.
SQL> commit;
阅读(2305) | 评论(0) | 转发(0) |