I hava a Query like this:
STRSQL = "SELECT * FROM T1 WHERE name LIKE ? "
pstm.setString(1, rs.getString("wantedName") );
these names are saved with nvarchar format in SQLSERVER , but this query doesn't work.
How can I compare 2 unicode value(farsi) in my query?