M Max Aug 22, 2003 #1 Is there any performance difference between, DataSet.DataTable.Select(); and DataView.Table.Select(); Thanks, Max.
Is there any performance difference between, DataSet.DataTable.Select(); and DataView.Table.Select(); Thanks, Max.
E Etienne Charland Aug 23, 2003 #2 If MyDataSet.DataTable and MyDataView.Table returns the same DataTable, then there's no difference. DataSet MyDataSet = new DataSet(); MyDataSet.Tables.Add("Table1"); DataView MyDataView = new DataView(MyDataSet.Tables("Table1"); DataTable T1 = MyDataSet.Tables("Table1"); DataTable T2 = MyDataView.Table; if (T1 == T2) T1.Select(""); Etienne
If MyDataSet.DataTable and MyDataView.Table returns the same DataTable, then there's no difference. DataSet MyDataSet = new DataSet(); MyDataSet.Tables.Add("Table1"); DataView MyDataView = new DataView(MyDataSet.Tables("Table1"); DataTable T1 = MyDataSet.Tables("Table1"); DataTable T2 = MyDataView.Table; if (T1 == T2) T1.Select(""); Etienne