>I have a database table containing a sparse mapping from an integer to
> a string. I retrieve this table into an OleDbDataReader. I'd then like
[quoted text clipped - 6 lines]
> Is std::map the right container or is there a better one in the .NET
> class library?
No, STL isn't usable for managed types until at least Orcas.
Try System::Collections::Generic::Dictionary<Key, Value>.
> If std::map is still the right container how can I convert from the
> System::String returned by OleDbDataRead::GetString to something which
[quoted text clipped - 3 lines]
> TIA,
> KK