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.
mikerPosted Mar 22, 2004, 8:13 AM
howard.klinePosted Mar 19, 2004, 3:27 PM