|
is there a way to use DataTable and linked it to the database without using the dataset ??
i have a datatable that i populate using the load from a Datareadermethod
DataTable MyTable = new DataTable();
reader1 = SQlcommand1.executeReader();
MyTable.load(reader1);
i need to update the table and change the actual data in the database. please help
|