Below is the error I get when trying to convert a Visual FoxPro memo field to a DT_WSTR (4000 ) in a SQL table. It does not let me convert a DT_TEXT to a DT_WSTR.
Thank in advance
TITLE: Editing Component
The component is not in a valid state. The validation errors are:
Error at NMF [Data Conversion [6328]]: Conversion from "DT_TEXT" to "DT_WSTR" is not supported.
Do you want the component to fix these errors automatically?
BUTTONS:
&Yes
&No
Cancel
Long Object types such as DT_TEXT have limited conversion support. Since DT_TEXT is non-unicode, likely you would have to convert in two steps:
DT_TEXT -> DT_STR using same codepage
DT_STR -> DT_WSTR.
|||Mark's spot on of course. Stick the following expression into a Derived Column Component
(DT_WSTR, 4000) (DT_STR, 4000, 1252) [ColumnName]
-Jamie
2 comments:
Very interesting information.
Convert Visual FoxPro to .Net
VB6 to VB.Net Migration
ASP to ASP.Net Migration
This is great information for me.
Convert Visual FoxPro to .Net
Post a Comment