2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-14 12:52:17 +00:00

Added coroutines to integration tests

Changed all prepared_statement functions to not use auto return type
declaration
Fixed wrong return value in prepared_statement::execute
This commit is contained in:
ruben
2020-03-28 16:06:36 +00:00
parent f57de875ef
commit 09f7bd9aed
14 changed files with 174 additions and 24 deletions

View File

@@ -65,7 +65,7 @@ void main_impl(int argc, char** argv)
* - Authenticating to the MySQL server.
*/
boost::mysql::tcp_connection conn (ctx);
conn.next_level().connect(ep); // next_level() returns a boost::asio::ip::tcp::socket
conn.next_layer().connect(ep); // next_level() returns a boost::asio::ip::tcp::socket
conn.handshake(params); // Authenticates to the MySQL server
/**