CREATE TABLE DUAL ( FIELD int NOT NULL, PRIMARY KEY (FIELD) );
insert into DUAL (FIELD) values (1);
select 'č' from dual; (could be also some other non latin-1 character)
as a result '?' is returned instead of the proper letter.
Log in to post a comment.