mirror of
https://github.com/boostorg/mysql.git
synced 2026-02-14 12:52:17 +00:00
Now root password is assumed to be blank
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
||||
|
||||
mysql -u root -proot < $SCRIPTPATH/db_setup.sql
|
||||
./example_query_sync root root
|
||||
./example_query_async root root
|
||||
./example_metadata root root
|
||||
mysql -u root < $SCRIPTPATH/db_setup.sql
|
||||
./example_query_sync root ""
|
||||
./example_query_async root ""
|
||||
./example_metadata root ""
|
||||
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
mysql -u root -proot < db_setup.sql
|
||||
mysql -u root < db_setup.sql
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace test
|
||||
|
||||
struct IntegTest : testing::Test
|
||||
{
|
||||
mysql::connection_params connection_params {"root", "root", "awesome"};
|
||||
mysql::connection_params connection_params {"root", "", "awesome"};
|
||||
boost::asio::io_context ctx;
|
||||
mysql::connection<boost::asio::ip::tcp::socket> conn {ctx};
|
||||
mysql::error_code errc;
|
||||
|
||||
Reference in New Issue
Block a user