Hi,
How can I combine QueryContext and ExecContext so that both sql.Rows and sql.Result are returned? For example, if I have a stored procedure with:
```
insert into Users (Username) values ('JohnDoe');
select X = 1, Y = 'one';
select X = 2;
update Transfers set Value = 10 where Value = 0;
```
then I would like to get back sql.Rows with results from the two selects, and sql.Result with the RowsAffected for the insert and update statements.
I would like for this to work with any stored procedure; meaning, any combination of inserts/updates/selects.
Please advise :-)
Daniel