Hi
can i use this way
Dim dv as New DataView=Dataset("select * from table1,table2 where table1.id=tablel2.id")
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manoj PatelPosted May 7, 2013, 12:19 AM
Query is not a big issue, big issue is there the dataset is not support such a query string type i think.
I always use as "Dim Dv as New DataView =dataset("tablename") for one table at a time
but i have problem that i want to data in a dataview from two table which is stored in dataset
venkata kumarPosted May 6, 2013, 11:44 PM
use this way
Dim dv as New DataView=Dataset("select * from table1 t1 inner join table2 on t1.id=t2.id")