I have the following code.
VB Code:
  1. Dim datAdapt As New OleDb.OleDbDataAdapter("Select * From Weekly_Customers", Conn)
  2. Dim commBuild As New OleDb.OleDbCommandBuilder(datAdapt)
  3.         Dim datset As New Data.DataSet
  4.         Dim datrow As Data.DataRow

This works fine. My questions is, say I have another table in the same database that Weekly_customers is in. Is there some command that I can use where I can just open that table with datAdapt, or do I have to declare a data adapter for each table in the database that I want to open?

Thanks