18 lines
278 B
C++
18 lines
278 B
C++
|
|
#include "StdAfx.h"
|
|
#include "AdoDBProc.h"
|
|
|
|
CAdoDBProc::CAdoDBProc()
|
|
{
|
|
SetCallbackExceptionLog(AdoExecptionLog);
|
|
}
|
|
|
|
CAdoDBProc::~CAdoDBProc()
|
|
{
|
|
}
|
|
|
|
void CAdoDBProc::AdoExecptionLog(const char* strError)
|
|
{
|
|
BILLING_LOG(WZPUBLIC::LEVEL_ERROR, "DataBase fail\r\n%s", strError);
|
|
}
|