wrote the following lines in sql+ and can't see the hebrew character.
create table zz (z varchar2(5));
insert into zz values ('ABC');
insert into zz values ('אבג');
select * from zz;
Z
-----
ABC
???
what's I need to do?
Thanks zehava
create table zz (z varchar2(5));
insert into zz values ('ABC');
insert into zz values ('אבג');
select * from zz;
Z
-----
ABC
???
what's I need to do?
Thanks zehava
Comment