blob: 157c55a71a1670b00b993762a16f06794b4652df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "my-error.h"
#include <mysql.h>
MySQL::Error::Error(MYSQL * m) : msg(mysql_error(m)) { }
MySQL::Error::Error(MYSQL_STMT * m) : msg(mysql_stmt_error(m)) { }
std::string
MySQL::Error::message() const noexcept
{
return msg;
}
|