M
Murray Foxcroft
I'm attempting to retrieve specific versions of a row's
column in C++ (this works fine in C# - apart from the syntax)
// by column number
row->Item[2, DataRowVersion::Original]->ToString();
// or column name
row->Item[S"FirstName", DataRowVersion::Original]->ToString();
However, both of these calls results in an error "Cannot find column 256"
The value changes with the specified DataRowVersion enumeration: 256 for
Original, 512 for Current and 1024 for Proposed.
column in C++ (this works fine in C# - apart from the syntax)
// by column number
row->Item[2, DataRowVersion::Original]->ToString();
// or column name
row->Item[S"FirstName", DataRowVersion::Original]->ToString();
However, both of these calls results in an error "Cannot find column 256"
The value changes with the specified DataRowVersion enumeration: 256 for
Original, 512 for Current and 1024 for Proposed.