25 lines
514 B
C++
25 lines
514 B
C++
|
|
/**************************************************************************************************
|
|
|
|
작성일: 2009.11.24
|
|
작성자: 진혜진
|
|
|
|
설명: ADO DB의 프로시져 처리를 담당한다.
|
|
|
|
**************************************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "AdoLib.h"
|
|
#include "AdoDBImpl.h"
|
|
#include "WorkerThread.h"
|
|
|
|
class CAdoDBProc : public AdoLib::CAdoDBImpl
|
|
{
|
|
public:
|
|
CAdoDBProc();
|
|
virtual ~CAdoDBProc();
|
|
|
|
static void AdoExecptionLog(const char* strError);
|
|
};
|