...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
A non-owning reference to a resultset.
Defined in header <boost/mysql/resultset_view.hpp>
class resultset_view
Name |
Description |
---|---|
Returns the number of affected rows for this resultset. |
|
Returns whether this is a null view 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. |
|
resultset_view [constructor] |
Constructs a view with |
Returns the rows for this resultset. |
|
Returns the number of warnings for this resultset. |
A resultset_view
points to
memory owned by an external object, usually a results
. The view and any other
reference type obtained from it are valid as long as the object they point
to is alive.