SOCI / soci

Official repository of the SOCI - The C++ Database Access Library
http://soci.sourceforge.net/
Boost Software License 1.0
1.37k stars 472 forks source link

Getting multiple recordsets from a stored procedure #1107

Closed Kokainym closed 6 months ago

Kokainym commented 6 months ago

Is it possible to access other recordsets or create vector of rowset from the result of executing a stored procedure?

rowset<row> rs = sql->prepare << "EXEC GetPatterns";
GetPatterns procedure return two recordsets with data. By this code I can access only to first recordset, but it returns a second or more.

Thx :)