I am trying to synchronize a SQL Server table with a Lotus Notes database. I installed the NotesSQL ODBC driver and was able to insert, update, and select notes from a database form using the ActiveX Script task in DTS. Everything works well until I try to insert Chinese characters into the text box in the notes database. After pasting, all I got is ??? characters.
So my question is, how do you insert unicode into the note database using the ODBC driver? I tried something like this (where NotesForm is the form from notes): Insert NotesForm (UnicodeField, Field2) VALUES (N'some unicode ',' normal field ')
Any help would be greatly appreciated, thanks.
source
share