Message from C, C++ discussions
December 2019
— Docs are lacking compared to the other part of the lib, esp when making connection.
Sorry, I'll add this part. And U could find something useful for making connections on https://github.com/an-tao/drogon/wiki/08.1-DataBase-DbClient
— Please
— Hm?
— 👍
— Yea, I've read that. But no way to input password ?
I do sth like this in soci.string s = fmt::format("db={} user={} password='{}'", cfg.db_name, cfg.db_user, cfg.db_pass);
session sql(soci::mysql, s);
— In drogon, all connections are managed in DbClient, you can think of DbClient object as a connection pool.
— I know that
— You could set password in the connInfo argument.
— It's common design methodology
— One Client, multiple conn.
— Or create the DbClient in configuration file, see https://github.com/an-tao/drogon/wiki/10-Configuration-file#db_clients