2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-16 01:22:20 +00:00

Changed Appveyor SSL setup

This commit is contained in:
ruben
2020-04-04 17:59:29 +01:00
parent da3a32bc25
commit 5bfeb02ad9
2 changed files with 5 additions and 29 deletions

View File

@@ -5,16 +5,16 @@ configuration:
platform:
- x86
- x64
matrix:
fast_finish: true
build_script:
- cp ci\ca-cert.pem C:\
- cp ci\server-cert.pem C:\
- cp ci\server-key.pem C:\
- cp ci\windows-ssl.cnf C:\my.cnf
- dir C:\
- dir /b /s /a:-D "C:\Program Files\MySQL\MySQL Server 5.7"
- type C:\mysql-log.txt
- 'echo "!include C:\my.cnf" >> "C:\Program Files\MySQL\MySQL Server 5.7\my.ini"'
- type "C:\Program Files\MySQL\MySQL Server 5.7\my.ini"
- net stop MySQL57 && net start MySQL57
- set PATH=C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Libraries\boost_1_71_0\lib64-msvc-14.2;C:\Libraries\boost_1_71_0\lib32-msvc-14.2;%PATH%
- mysqladmin --user=root password -pPassword12! ""

View File

@@ -7,36 +7,12 @@
#include "boost/mysql/error.hpp"
#include "boost/mysql/resultset.hpp"
#include "boost/mysql/prepared_statement.hpp"
#include "boost/mysql/connection_params.hpp"
#include <boost/asio/ip/tcp.hpp>
namespace boost {
namespace mysql {
/**
* \brief Parameters defining how to authenticate to a MySQL server.
*/
struct connection_params
{
std::string_view username; ///< Username to authenticate as.
std::string_view password; ///< Password for that username, possibly empty.
std::string_view database; ///< Database to use, or empty string for no database.
collation connection_collation; ///< The default character set and collation for the connection.
/// Initializing constructor
connection_params(
std::string_view username,
std::string_view password,
std::string_view db = "",
collation connection_col = collation::utf8_general_ci
) :
username(username),
password(password),
database(db),
connection_collation(connection_col)
{
}
};
/**
* \brief A connection to a MySQL server.
* \details