SQL queries on Dataset in memory

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there an easy way to run SQL queries on a dataset that's in memory. I've loaded up data from an XML text file, and would like to run some update queries on the tables that are created in the dataset, and then write them back out as XML

Anyone know if this is possible without writing the data back out to a database table in Access or some other db format

Thanks,
 
Is there an easy way to run SQL queries on a dataset that's in memory.

Yes, you can do some limited querying by using the .Select method on
the DataTable class.

Marc
================================================================
Marc Scheuner May The Source Be With You!
Bern, Switzerland m.scheuner(at)inova.ch
 
Back
Top