List of tables from database
I need to display all tables within a specified database.
I believe it has something to do with the SqlDatAdapter object I create.
//Create SqlDataAdapter object
da = new SqlDataAdapter(SQLstring,objConn);
//Create data set object
ds = new DataSet();
//fill dataset
da.Fill(ds,Table);
Thanks.