I would like to have a dataset or datatables and be able to run SQL queries on them without using any external RDBMS.
For example, to take 2 datasets in a dataset and simply join them directly with an SQL statement and a Where statement, will the result be a new data type? For example, if I have 2 datatables called People and Addresses in a dataset (which I created using code without getting from the database .. pardon old-fashioned connection syntax):
dim dtJoined as DataTable = MyDataSet.RunSQLQuery ("Select * from People, Orders Where People.PersonID=Orders.OrdereID")
thank
source
share