mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
35 lines
611 B
C++
35 lines
611 B
C++
#if __has_include(<mysql.h>)
|
|
#include <mysql.h>
|
|
#else
|
|
#include <mysql/mysql.h>
|
|
#endif
|
|
#include <mysqlxx/Exception.h>
|
|
|
|
|
|
namespace mysqlxx
|
|
{
|
|
|
|
std::string errorMessage(MYSQL * driver)
|
|
{
|
|
std::stringstream res;
|
|
res << mysql_error(driver)
|
|
<< " (" << (driver->host ? driver->host : "(nullptr)")
|
|
<< ":" << driver->port << ")";
|
|
return res.str();
|
|
}
|
|
|
|
void checkError(MYSQL * driver)
|
|
{
|
|
unsigned num = mysql_errno(driver);
|
|
|
|
if (num)
|
|
throw Exception(errorMessage(driver), num);
|
|
}
|
|
|
|
void onError(MYSQL * driver)
|
|
{
|
|
throw Exception(errorMessage(driver), mysql_errno(driver));
|
|
}
|
|
|
|
}
|