Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Joins between DataSources
Message
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
ADO.NET
Titre:
Joins between DataSources
Divers
Thread ID:
00880796
Message ID:
00880796
Vues:
60
I am trying to join a FoxPro table with an SQL table. I can get both tables into the same dataset, now I want to create some views (I guess) that join these tables so I can bind the view to a datagrid. The I was hoping to build a view as a select against both tables and not not use relation objects since the join scenerio is dynamic.
DataSet ds = new DataSet();
ds.Tables.Add(DataClass.GetFoxTable("select * from books"));
ds.Tables.Add(DataClass.GetSqlTable("select * from bookprices"));
The problem is that I cannot find where I can run a select statement against my dataset...

Please help!
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform