List of tables from database

Mar 19 2004 3:25 PM
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.

Answers (2)