2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-01-28 07:22:26 +00:00

Added execute_params

- Added execute_params
- prepared_statement::execute with iterators overload has been replaced by
execute_params overload
- Added type requirement checks for ValueForwardIterator and
ValueCollection
This commit is contained in:
Ruben Perez
2021-02-26 08:11:34 +01:00
parent 4c7ca0a1b4
commit 087faf187a
27 changed files with 747 additions and 136 deletions

View File

@@ -51,7 +51,7 @@ void main_impl(int argc, char** argv)
boost::mysql::tcp_resultset result = conn.query(sql);
//]
//[tutorial_fetch
//[tutorial_read
std::vector<boost::mysql::row> employees = result.read_all();
//]