// // Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_MYSQL_RESULTS_HPP #define BOOST_MYSQL_RESULTS_HPP #include #include #include #include #include #include #include namespace boost { namespace mysql { /** * \brief Holds the results of a SQL query. * \details The results (rows, metadata and additional info) are held in-memory. * \n * \par Thread safety * Distinct objects: safe. \n * Shared objects: unsafe. \n */ class results { public: /** * \brief Default constructor. * \details Constructs an empty results object, with `this->has_value() == false`. * * \par Exception safety * No-throw guarantee. */ results() = default; /** * \brief Copy constructor. * \par Exception safety * Strong guarantee. Internal allocations may throw. */ results(const results& other) = default; /** * \brief Move constructor. * \par Exception safety * No-throw guarantee. * * \par Object lifetimes * View objects obtained from `other` remain valid. */ results(results&& other) = default; /** * \brief Copy assignment. * \par Exception safety * Basic guarantee. Internal allocations may throw. * * \par Object lifetimes * View objects referencing `*this` are invalidated. */ results& operator=(const results& other) = default; /** * \brief Move assignment. * \par Exception safety * Basic guarantee. Internal allocations may throw. * * \par Object lifetimes * View objects referencing `other` remain valid. View objects * referencing `*this` are invalidated. */ results& operator=(results&& other) = default; /// Destructor ~results() = default; /** * \brief Returns whether the object holds a valid result. * \details Having `this->has_value()` is a precondition to call all data accessors. * Objects populated by \ref connection::query, \ref connection::execute_statement or their async * counterparts are guaranteed to have `this->has_value() == true`. * * \par Exception safety * No-throw guarantee. */ bool has_value() const noexcept { return st_.complete(); } /** * \brief Returns the rows retrieved by the SQL query. * \par Preconditions * `this->has_value() == true` * * \par Exception safety * No-throw guarantee. * * \par Object lifetimes * This function returns a view object, with reference semantics. The returned view points into * memory owned by `*this`, and will be valid as long as `*this` or an object move-constructed * from `*this` are alive. */ rows_view rows() const noexcept { assert(has_value()); return rows_; } /** * \brief Returns metadata about the columns in the query. * \details * The returned collection will have as many \ref metadata objects as columns retrieved by * the SQL query, and in the same order. * * \par Preconditions * `this->has_value() == true` * * \par Exception safety * No-throw guarantee. * * \par Object lifetimes * This function returns a view object, with reference semantics. The returned view points into * memory owned by `*this`, and will be valid as long as `*this` or an object move-constructed * from `*this` are alive. */ metadata_collection_view meta() const noexcept { assert(has_value()); return st_.meta(); } /** * \brief Returns the number of rows affected by the executed SQL statement. * \par Preconditions * `this->has_value() == true` * * \par Exception safety * No-throw guarantee. */ std::uint64_t affected_rows() const noexcept { assert(has_value()); return st_.affected_rows(); } /** * \brief Returns the last insert ID produced by the executed SQL statement. * \par Preconditions * `this->has_value() == true` * * \par Exception safety * No-throw guarantee. */ std::uint64_t last_insert_id() const noexcept { assert(has_value()); return st_.last_insert_id(); } /** * \brief Returns the number of warnings produced by the executed SQL statement. * \par Preconditions * `this->has_value() == true` * * \par Exception safety * No-throw guarantee. */ unsigned warning_count() const noexcept { assert(has_value()); return st_.warning_count(); } /** * \brief Returns additionat text information about the execution of the SQL statement. * \details * The format of this information is documented by MySQL here. * \n * The returned string always uses ASCII encoding, regardless of the connection's character set. * * \par Preconditions * `this->has_value() == true` * * \par Exception safety * No-throw guarantee. * * \par Object lifetimes * This function returns a view object, with reference semantics. The returned view points into * memory owned by `*this`, and will be valid as long as `*this` or an object move-constructed * from `*this` are alive. */ string_view info() const noexcept { assert(has_value()); return st_.info(); } private: execution_state st_; ::boost::mysql::rows rows_; #ifndef BOOST_MYSQL_DOXYGEN friend struct detail::results_access; #endif }; } // namespace mysql } // namespace boost #include #endif