Top "Multiple-resultsets" questions

Dapper.NET and stored proc with multiple result sets

Is there any way to use Dapper.NET with stored procs that return multiple result sets? In my case, the …

sql-server stored-procedures dapper multiple-resultsets
How to read multiple resultset from SqlDataReader?

I have a SP from that I am trying to return 2 result set from, and in my .cs file i …

c# .net sqldatareader multiple-resultsets
Linq to SQL Stored Procedures with Multiple Results

We have followed the approach below to get the data from multiple results using LINQ To SQL CREATE PROCEDURE dbo.…

linq-to-sql multiple-resultsets
To write the value from resultset to text file (.txt file)

Please help me on the below code as i want to write the values from the resultset to a txt …

java text-files multiple-resultsets
How to pull back all parent/child data in complex object

I have these two tables with a one (category) to many (product) relationship in the database: Table Product Name Description …

c# dapper multiple-resultsets
MyBatis multiple resultsets

I am currently migrating code from iBatis 2 to MyBatis 3. I have a function that returns multiple results sets which we …

mybatis multiple-resultsets
Using JPA with stored procedures that return multiple result sets

Is it possible to handle multiple result sets having different columns from a stored procedure in SQL Server using JPA? …

hibernate jpa stored-procedures multiple-resultsets
Hibernate JPA, inheritance and Stored Procedure returning multiple result sets

I am attempting to consume multiple result sets from a stored procedure using Hibernate 4.3.5.Final (JPA 2.1) -- and I have …

hibernate jpa stored-procedures multiple-resultsets
JDBC: How to clear the contents of a result set before using it again?

I want to clear the contents of a result set (but nothing should happen to the underlying database) before using …

java mysql jdbc resultset multiple-resultsets
Mybatis map multiple resultsets into object inner collections

Brief problem description Following guideline for multiple resultsets and with help from this answer I now able to extract 2 different …

java xml mybatis multiple-resultsets