提交信息!
This commit is contained in:
parent
8d6b4b07d1
commit
92681a8cfe
|
@ -1111,3 +1111,24 @@ void ImportNewRepairMonitorToOracle( const std::string &
|
||||||
OCI_ConnectionFree( pConnection );
|
OCI_ConnectionFree( pConnection );
|
||||||
OCI_Cleanup();
|
OCI_Cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/************************************************
|
||||||
|
* \brief 保存核价清单表 - 源自新送返修监控报表
|
||||||
|
* \param userName
|
||||||
|
* \param password
|
||||||
|
* \param tnsName
|
||||||
|
* \param recordVector 新送返修监控报表记录
|
||||||
|
************************************************/
|
||||||
|
void ImportPriceCheckedListToOracle( const std::string & userName,
|
||||||
|
const std::string & password,
|
||||||
|
const std::string & tnsName,
|
||||||
|
const std::vector<NewRepairMonitorReportRecord> & recordVector )
|
||||||
|
{
|
||||||
|
OCI_Connection * pConn = nullptr;
|
||||||
|
OCI_Statement * pStatement = nullptr;
|
||||||
|
int returnCode = 0;
|
||||||
|
|
||||||
|
returnCode = OCI_Initialize(l_error_handler, nullptr, OCI_ENV_DEFAULT);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -75,3 +75,16 @@ void ImportNewRepairMonitorToOracle( const std::string &
|
||||||
const std::string & password,
|
const std::string & password,
|
||||||
const std::string & tnsName,
|
const std::string & tnsName,
|
||||||
const std::vector<NewRepairMonitorReportRecord> & recordVector );
|
const std::vector<NewRepairMonitorReportRecord> & recordVector );
|
||||||
|
|
||||||
|
/************************************************
|
||||||
|
* \brief 保存核价清单表 - 源自新送返修监控报表
|
||||||
|
* \param userName
|
||||||
|
* \param password
|
||||||
|
* \param tnsName
|
||||||
|
* \param recordVector 新送返修监控报表记录
|
||||||
|
************************************************/
|
||||||
|
void ImportPriceCheckedListToOracle( const std::string & userName,
|
||||||
|
const std::string & password,
|
||||||
|
const std::string & tnsName,
|
||||||
|
const std::vector<NewRepairMonitorReportRecord> & recordVector );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue