public static DataTable getTAble()
{
DataAdapter da=new DataAdapter(q,con);
DataTAble dt=new DataTable();
da.fill(dt);
return dt;
}
what is right the above coding? I have confused because the fill method is used to fill the data into DataSet.but the above code the fill method is used to fill the data into DataTable. pls answer this problem