M
Marc A. Scirri
Using VB.NET:
I have a DataSet object(dsTempTables) with 3 DataTable
objects(dtHeader, dtPole, dtRemarks). I need to be able to select
data from multiple tables in a way like with old ADO (Select
table1.name, table2.ID from table1 Inner Join....) where you could
return a specific set of data from multiple tables based on a single
query.
It sounds like it is not as simple in ADO.NET but I would think that
it is still possible. I am jsut struggling to find a way to do it
using DataSets and DataTables.
I know I could just keep querying the data on the server when I need
it using the SQL dataReader and SQLCommand but I would like to be able
to store the data locally instead of creating temp tables on the
server.
Any help would be greatly appreciated.
I have a DataSet object(dsTempTables) with 3 DataTable
objects(dtHeader, dtPole, dtRemarks). I need to be able to select
data from multiple tables in a way like with old ADO (Select
table1.name, table2.ID from table1 Inner Join....) where you could
return a specific set of data from multiple tables based on a single
query.
It sounds like it is not as simple in ADO.NET but I would think that
it is still possible. I am jsut struggling to find a way to do it
using DataSets and DataTables.
I know I could just keep querying the data on the server when I need
it using the SQL dataReader and SQLCommand but I would like to be able
to store the data locally instead of creating temp tables on the
server.
Any help would be greatly appreciated.