We have
- Classic ASP (VBscript) application which render the form to be filled (charset=windows-1252)
- VB6 COM+ application (referencing ADO 2.1) which receive the information from the form and persist to an Oracle 11g R2 Database (into a Varchar2 field)
We try to copy and paste a text from a Word 2010 document containing these kind of character: " ’ ", " – " and so on. To be more specific the only characters that OraOLEDB can't handle are:
¤ ¦ ¨ ´ ¸ ¼ ½ ¾ ƒ ˆ ˜ – —
‘ ’ ‚ “ ” „ † ‡ • … ‰ › ™
It works fine when using MSDAORA provider but these character are persisted as upside down question mark when using OraOLEDB provider.
The thing is that we must use OraOLEDB provider to work with some CLOB fields.
What can we do?