Is there an example showing how to process multiple result sets with Anorm?
Searching for it, I only found this question asked back in 2011, without answer:
https://groups.google.com/d/msg/play-framework/G8ljcM7wQyQ/v--toMcauRoJFor instance, I'd like to be able to do this in a single query (probably through a stored procedure):
select customer, order_date from orders where order_id={id};
select item, qty, price from order_items where order_id={id};
The query would return 2 result sets, and I'd like to convert the first to an Order object and the second to a list of OrderItem objects.