Reputation: 4065
Is there anyway to batch two different select queries to either SQLite or SQLCE and get the two result sets back in C#? If not, is there an embedded database that handles this?
Upvotes: 1
Views: 934
Reputation: 74909
Separate the queries with a semicolon and load the results into a DataSet
or use IDataReader.NextResult()
.
Upvotes: 1