A
aculfa
We've a typed dataset which has a number of datatables.
After some computing we insert rows to these datatables.
My question is, we want to insert null value to an integer column in this
datatable. How can this be done?
What should we do to do sth. like below;
myTypedDataSet.myDataTable.addmyDataTableRow(strValue1,
intValue2,
intValue3,
null, /*this column is an integer column*/
intValue5);
Thanks,
After some computing we insert rows to these datatables.
My question is, we want to insert null value to an integer column in this
datatable. How can this be done?
What should we do to do sth. like below;
myTypedDataSet.myDataTable.addmyDataTableRow(strValue1,
intValue2,
intValue3,
null, /*this column is an integer column*/
intValue5);
Thanks,