Tue. Sep. 21, 2004 11:35 AM PT
I also face this problem. The actual problem is the indexer property Item
use the following syntax: you should be fine.
row->get_Item(2, DataRowVersion::Original)->ToString();
OR
row->get_Item(S"FirstName", DataRowVersion::Original)->ToString();
Good Luck !!!
> I'm attempting to retrieve specific versions of a row's
> column in C++ (this works fine in C# - apart from the syntax)
[quoted text clipped - 8 lines]
> The value changes with the specified DataRowVersion enumeration: 256 for
> Original, 512 for Current and 1024 for Proposed.
Murray Foxcroft - 22 Sep 2004 17:10 GMT
Works like a charm - thanks!
> Tue. Sep. 21, 2004 11:35 AM PT
>
[quoted text clipped - 19 lines]
>> The value changes with the specified DataRowVersion enumeration: 256 for
>> Original, 512 for Current and 1024 for Proposed.