mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
b7ef5a699c
* Get rid of non-existent vectorclass * Move FastMemcpy to contribs * Restore comments * Disable FastMemcpy on non-Linux * Fix cmake file * Don't build FastMemcpy for ARM64 * Replace FastMemcpy submodule with its contents * Fix cmake file * Move widechar_width to contrib/ * Move sumbur to contrib/ * Move consistent-hashing to contrib/ * Fix UBSan tests
39 lines
739 B
C++
39 lines
739 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));
|
|
}
|
|
|
|
}
|