You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/iData/iDataPool/iDataIoUtils.h

26 lines
538 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "Defines.h"
#include "iSqlEngine.h"
#include "iDataPool_global.h"
class I_DATAPOOL_EXPORT iDataIoUtils : public iSqlEngine
{
public:
/// @note pSqlDb为空则自动从ZxDbSimple中获取
iDataIoUtils(QString sConnStr = "", QSqlDatabase* pSqlDb = NULL);
~iDataIoUtils();
public:
/// @brief 批量保存模式,需要统一删除原来的重复数据
/// @param sTable针对表名
/// @param vvecData结果
virtual bool saveDataEx(QString sTable, VVecVariant& vvecData);
};