Good day.
I've got code similar to the following:
1 public static DataTable Select()
2 {
3 using (DataTable data_Table = new DataTable())
4 {
5 using (SqlDataAdapter sql_da = new SqlDataAdapter())
6 {
7 //Do some stuff to insert data into the data_Table.</span></pre><pre>
8 }
9 return data_Table;
10 }
11 }
12
13 public void GetData()
Go to the complete details ...