• 大小: 495KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: C/C++
  • 标签: Oci  C++  Oracle  

资源简介

用C++封装的Oci操作接口,使用了数据库连接池,可以在多线程中并发操作数据。

资源截图

代码片段和文件信息

#include “DataTable.h“

int GetStringLen(ub1* strint iLen)
{
do 
{
} while (str[--iLen] == ‘ ‘);
return iLen+1;
}

CDataTable::CDataTable(int iFieldsOCIStmt *phStmtOCIError *phErr)
{
m_pData = new void*[iFields];
m_pDataType = new int[iFields];
m_pSize = new int[iFields];
for (int i = 0; i < iFields; i++)
{
m_pData[i] = NULL;
m_pDataType[i] = 0;
m_pSize[i] = 0;
}
m_phStmt = phStmt;
m_phErr = phErr;
m_iField = iFields;
m_indp = new sb2[iFields];
}
CDataTable::~CDataTable ()
{
for (int i = 0; i < (int)m_iField; i++)
{
if (m_pData[i] != NULL)
{
delete[] m_pData[i];
}
}
delete[] m_pData;
delete[] m_pDataType;
delete[] m_pSize;
delete[] m_indp;
OCIStmtRelease(m_phStmt m_phErr (OraText *) NULL 0 OCI_DEFAULT);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    1015808  2013-03-07 09:26  OCI\oci.dll

     文件     610664  2013-03-07 09:26  OCI\oci.lib

    ..A.SHR       105  2013-05-13 11:19  OCI\vssver2.scc

     文件      43712  2013-03-07 09:26  OCI\include\ldap.h

     文件      34831  2013-03-07 09:26  OCI\include\nzerror.h

     文件      77174  2013-03-07 09:26  OCI\include\nzt.h

     文件       2193  2013-03-07 09:26  OCI\include\occi.h

     文件      11960  2013-03-07 09:26  OCI\include\occiAQ.h

     文件      35732  2013-03-07 09:26  OCI\include\occiCommon.h

     文件      72822  2013-03-07 09:26  OCI\include\occiControl.h

     文件      41104  2013-03-07 09:26  OCI\include\occiData.h

     文件      25688  2013-03-07 09:26  OCI\include\occiobjects.h

     文件     174288  2013-03-07 09:26  OCI\include\oci.h

     文件       7385  2013-03-07 09:26  OCI\include\oci1.h

     文件      10678  2013-03-07 09:26  OCI\include\oci8dp.h

     文件     442412  2013-03-07 09:26  OCI\include\ociap.h

     文件       6359  2013-03-07 09:26  OCI\include\ociapr.h

     文件      43887  2013-03-07 09:26  OCI\include\ocidef.h

     文件       4161  2013-03-07 09:26  OCI\include\ocidem.h

     文件      11588  2013-03-07 09:26  OCI\include\ocidfn.h

     文件       9235  2013-03-07 09:26  OCI\include\ociextp.h

     文件       6659  2013-03-07 09:26  OCI\include\ocikpr.h

     文件       7773  2013-03-07 09:26  OCI\include\ocixml.h

     文件       6093  2013-03-07 09:26  OCI\include\ocixmldb.h

     文件     102483  2013-03-07 09:26  OCI\include\ocixstream.h

     文件      24185  2013-03-07 09:26  OCI\include\odci.h

     文件       7539  2013-03-07 09:26  OCI\include\oratypes.h

     文件     104870  2013-03-07 09:26  OCI\include\ori.h

     文件      15456  2013-03-07 09:26  OCI\include\orid.h

     文件     161534  2013-03-07 09:26  OCI\include\orl.h

............此处省略34个文件信息

评论

共有 条评论