Can anyone help me this my problem?
stored proc:
----------------------------------
select * from table1
select * from table2
select * from table3
-----------------------------------
recieving code ............
Dim DataAdapter As SqlDataAdapter = New SqlDataAdapter()
DataAdapter.SelectCommand = Command
Dim ds As DataSet = New DataSet
Con.Open()
DataAdapter.Fill(ds, "Table")
my problem is that ds(dataset) only recieve one table result... i believe that datasets could contain multiple tables..
thanks in advance