how to define and populate a System::Data::DataRow in C++

  • Thread starter Thread starter bill
  • Start date Start date
B

bill

All,

I am hung up trying to figure out the syntax for defining and
populating (or initializing) a DataRow using C++. I have the following:

System::Data::DataRow* drp;

This is dandy for declaring a pointer to a DataRow. What I cannot
figure out is how to instantiate the object and initialize it.
Actually, this is all to the end of sticking some data into a dataset
object. Any references on the subject would be helpful. As usual, I
can find plenty of examples using VB or C#, but I cannot seem to make
the leap from either of these to C++.

TIA

Bill
 
Back
Top