...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
An owning resultset, containing metadata, rows and additional info.
Defined in header <boost/mysql/resultset.hpp>
class resultset
Name |
Description |
---|---|
Returns the number of affected rows for this resultset. |
|
Returns whether this object contains actual data or not. |
|
Returns additional information for this resultset. |
|
Returns whether this resultset represents a procedure OUT params. |
|
Returns the last insert ID for this resultset. |
|
Returns metadata for this resultset. |
|
Copy assignment. |
|
resultset [constructor] |
Constructs an empty resultset. |
Returns the rows that this resultset contains. |
|
Returns the number of warnings for this resultset. |
|
~resultset [destructor] |
Destructor. |
Similar to results
, but can only represent
a single resultset (while results
can hold multiple resultsets). Can be used to take ownership of a resultset_view
.