Link to home
Start Free TrialLog in
Avatar of lungwa
lungwa

asked on

VB6 access database which store unicode string

if i have the database such as sql2000 which is stored a unicode string such as chinese characters, and i only can use VB6 to write a program to access it, how can I do the comparation or search, b/c somebody told me that the VB6 is not support unicode, please advice
ASKER CERTIFIED SOLUTION
Avatar of TDSnet
TDSnet

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of lungwa
lungwa

ASKER

but right now is if I want to query something from the database , select * from something="--something unicode characters here ---", and the read the result back how can i do it
Same concept as the Stored Procedure:

select *
  from someTable
 where someField = N'SomeUnicodeValue'

Jack