Bug: PL/SQL Developer doesn't display last char for nvarchar2

Invincible

Member²
PL/SQL Developer 8 doesn't display last char for nvarchar2 columns when "Unicode Enabled" is checked.
Simple test :

SQL:
create table test_nvarchar
(
       test nvarchar2(10)
);

insert into test_nvarchar
values ('0123456789');

select * from test_nvarchar;

Displays: '012345678';

If I uncheck Unicode Enabled I can't open CLOBs.

 
This works fine for me. Can you go to Help > Support Info, press the 'Copy all pages' button on this info screen, and paste this text into an e-mail reply?
 
Back
Top