May 20, 2005 at 9:25 am
I'm able to put cyrillic text data in a nVarchar field but if i try to query these data no results are found... even i search the exact text of the field... no way.
How can i make a right query?
Pls help me.
Thx advance
May 23, 2005 at 8:00 am
This was removed by the editor as SPAM
May 26, 2005 at 4:16 am
Does it work for you?
(Substitute any Cyrillic for ????????)
USE Northwind
INSERT INTO Employees(LastName, FirstName) VALUES (N'Some', N'????????')
SELECT *
FROM Employees
WHERE FirstName = N'????????'
May 26, 2005 at 4:27 am
How are you querying the data? Can you post some code?
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply