Hi there, I created a table like this :
create table Test ( ID Integer NOT NULL, NAME Varchar(20) UNICODE, PASSWORD Varchar(10) UNICODE ) insert into Test (ID,NAME,PASSWORD) VALUES( 1,'David','getin') with the JDBC 7.3.19a ( with & without the connect parameter unicode ), but when I make : SELECT * FROM Test WHERE NAME='David' i get no result.... But if I create the table with SQL-Studio there is the correct result .... Any ideas why ? regards, Sven