网上经常有人问如何把图像存入数据库中,原先我也是不得要领。经过多方指点和自己在开发过程中的摸索,终于解决这一问题。
下面给出用VC,VB如何操作图像文件存取数据库的原码,帮助一些还没有掌握方法的朋友,也请这方面的高手多多指教。(均用ADO连接数据库)
1. VC把一个文件存入数据库
 CFile imagefile;
  CFile imagefile; if(0 == imagefile.Open("d:\\user\\bmp.bmp",CFile::modeRead))
  if(0 == imagefile.Open("d:\\user\\bmp.bmp",CFile::modeRead)) return;
     return; _RecordsetPtr pRs = NULL;
  _RecordsetPtr pRs = NULL;              _ConnectionPtr pConnection = NULL;
  _ConnectionPtr pConnection = NULL; _variant_t varChunk;
  _variant_t varChunk; HRESULT hr;
  HRESULT hr; BYTE* pbuf;
  BYTE* pbuf; long nLength = imagefile.GetLength();
  long nLength = imagefile.GetLength(); pbuf = new BYTE[nLength+2];
  pbuf = new BYTE[nLength+2]; if(pbuf == NULL)
  if(pbuf == NULL) return;                             //allocate memory error;
     return;                             //allocate memory error; imagefile.Read(pbuf,nLength);          //read the file into memory
  imagefile.Read(pbuf,nLength);          //read the file into memory
 BYTE *pBufEx;
  BYTE *pBufEx; pBufEx = pbuf;
  pBufEx = pbuf; //build a SAFFERRAY
  //build a SAFFERRAY SAFEARRAY* psa;
  SAFEARRAY* psa; SAFEARRAYBOUND rgsabound[1];
  SAFEARRAYBOUND rgsabound[1]; rgsabound[0].lLbound = 0;
  rgsabound[0].lLbound = 0; rgsabound[0].cElements = nLength;
  rgsabound[0].cElements = nLength; psa = SafeArrayCreate(VT_UI1, 1, rgsabound);
  psa = SafeArrayCreate(VT_UI1, 1, rgsabound);
 for (long i = 0; i < nLength; i++)
  for (long i = 0; i < nLength; i++) SafeArrayPutElement (psa, &i, pBufEx++);
       SafeArrayPutElement (psa, &i, pBufEx++); VARIANT varBLOB;
  VARIANT varBLOB; varBLOB.vt = VT_ARRAY | VT_UI1;
  varBLOB.vt = VT_ARRAY | VT_UI1; varBLOB.parray = psa;
  varBLOB.parray = psa;
 _bstr_t strCnn("Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=CUSTOM;Data Source=SERVER");
  _bstr_t strCnn("Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=CUSTOM;Data Source=SERVER");     try
    try {
    { //Open a connection
        //Open a connection pConnection.CreateInstance(__uuidof(Connection));
        pConnection.CreateInstance(__uuidof(Connection)); hr = pConnection->Open(strCnn,"","",NULL);   //Connect a DataBase
        hr = pConnection->Open(strCnn,"","",NULL);   //Connect a DataBase pRs.CreateInstance(__uuidof(Recordset));
        pRs.CreateInstance(__uuidof(Recordset)); pRs->Open("CustomInfo",_variant_t((IDispatch *) pConnection,true),adOpenKeyset,adLockOptimistic,adCmdTable);  //Open a Table
        pRs->Open("CustomInfo",_variant_t((IDispatch *) pConnection,true),adOpenKeyset,adLockOptimistic,adCmdTable);  //Open a Table 
  //      pRs->AddNew();
//      pRs->AddNew();         pRs->Fields->GetItem("Image")->AppendChunk(varBLOB);
        pRs->Fields->GetItem("Image")->AppendChunk(varBLOB);         pRs->Update();
        pRs->Update(); pRs->Close();
        pRs->Close(); pConnection->Close();
        pConnection->Close(); }
 } catch(_com_error &e)
    catch(_com_error &e) {
    { // Notify the user of errors if any.
        // Notify the user of errors if any. _bstr_t bstrSource(e.Source());
        _bstr_t bstrSource(e.Source()); _bstr_t bstrDescription(e.Description());
        _bstr_t bstrDescription(e.Description()); CString sError;
        CString sError; sError.Format("Source : %s \n Description : %s\n",(LPCSTR)bstrSource,(LPCSTR)bstrDescription);
        sError.Format("Source : %s \n Description : %s\n",(LPCSTR)bstrSource,(LPCSTR)bstrDescription); AfxMessageBox(sError);
        AfxMessageBox(sError);      }
 }
 2. VC把数据库中IMAGE字段取出存为文件
2. VC把数据库中IMAGE字段取出存为文件
 _RecordsetPtr pRs = NULL;
    _RecordsetPtr pRs = NULL; _ConnectionPtr pConnection = NULL;
    _ConnectionPtr pConnection = NULL; _variant_t varChunk;
    _variant_t varChunk; HRESULT hr;
    HRESULT hr; VARIANT varBLOB;
    VARIANT varBLOB; _bstr_t strCnn("Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=CUSTOM;Data Source=SERVER");
    _bstr_t strCnn("Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=CUSTOM;Data Source=SERVER");     try
    try {
    { //Open a connection
        //Open a connection pConnection.CreateInstance(__uuidof(Connection));
        pConnection.CreateInstance(__uuidof(Connection)); hr = pConnection->Open(strCnn,"","",NULL);
        hr = pConnection->Open(strCnn,"","",NULL);         pRs.CreateInstance(__uuidof(Recordset));
        pRs.CreateInstance(__uuidof(Recordset)); pRs->Open("CustomInfo",_variant_t((IDispatch *) pConnection,true),adOpenKeyset,adLockOptimistic,adCmdTable);
        pRs->Open("CustomInfo",_variant_t((IDispatch *) pConnection,true),adOpenKeyset,adLockOptimistic,adCmdTable); //read  data
       //read  data   long lDataLength = pRs->Fields->GetItem("Image")->ActualSize;
       long lDataLength = pRs->Fields->GetItem("Image")->ActualSize; varBLOB = pRs->GetFields()->GetItem("Image")->GetChunk(lDataLength);
       varBLOB = pRs->GetFields()->GetItem("Image")->GetChunk(lDataLength); if(varBLOB.vt == (VT_ARRAY | VT_UI1))
      if(varBLOB.vt == (VT_ARRAY | VT_UI1))         {
     { BYTE *pBuf = NULL;
            BYTE *pBuf = NULL;    pBuf = (BYTE*)GlobalAlloc(GMEM_FIXED,lDataLength);
            pBuf = (BYTE*)GlobalAlloc(GMEM_FIXED,lDataLength); SafeArrayAccessData(varBLOB.parray,(void **)pBuf);
            SafeArrayAccessData(varBLOB.parray,(void **)pBuf);  //Build a File in Windows Temp Directory
            //Build a File in Windows Temp Directory char tmpPath[_MAX_PATH+1];
            char tmpPath[_MAX_PATH+1]; GetTempPath(_MAX_PATH,tmpPath);
            GetTempPath(_MAX_PATH,tmpPath); CString strFileName = "temp.bmp";
            CString strFileName = "temp.bmp"; strFileName = tmpPath+strFileName;
            strFileName = tmpPath+strFileName; 
                                       CFile outFile(strFileName,CFile::modeCreate|CFile::modeWrite);
            CFile outFile(strFileName,CFile::modeCreate|CFile::modeWrite); LPSTR buffer = (LPSTR)GlobalLock((HGLOBAL)pBuf);
            LPSTR buffer = (LPSTR)GlobalLock((HGLOBAL)pBuf); outFile.WriteHuge(buffer,lDataLength);
            outFile.WriteHuge(buffer,lDataLength); GlobalUnlock((HGLOBAL)pBuf);
            GlobalUnlock((HGLOBAL)pBuf); outFile.Close();
            outFile.Close();            SafeArrayUnaccessData (varBLOB.parray);
            SafeArrayUnaccessData (varBLOB.parray); }
       }
 pRs->Close();
        pRs->Close(); pConnection->Close();
        pConnection->Close(); }
     } catch(_com_error &e)
    catch(_com_error &e) {
    { // Notify the user of errors if any.
        // Notify the user of errors if any. _bstr_t bstrSource(e.Source());
        _bstr_t bstrSource(e.Source()); _bstr_t bstrDescription(e.Description());
        _bstr_t bstrDescription(e.Description()); CString sError;
        CString sError; sError.Format("Source : %s \n Description : %s\n",(LPCSTR)bstrSource,(LPCSTR)bstrDescription);
        sError.Format("Source : %s \n Description : %s\n",(LPCSTR)bstrSource,(LPCSTR)bstrDescription); AfxMessageBox(sError);
        AfxMessageBox(sError);      }
 } 
 
                     
                    
                 
                    
                 
    
 
      
                
            
         
         
 浙公网安备 33010602011771号
浙公网安备 33010602011771号