123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- // DataTable.cpp : implementation file
- //
- #include "stdafx.h"
- #include "CP_Main.h"
- #include "DataTable.h"
- #include "DatabaseUtilities.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDataTable
- IMPLEMENT_DYNAMIC(CDataTable, CDaoRecordset)
- CDataTable::CDataTable(CDaoDatabase* pdb)
- :CDaoRecordset(pdb)
- {
- //{{AFX_FIELD_INIT(CDataTable)
- m_lID = 0;
- m_lDataID = 0;
- m_strClipBoardFormat = _T("");
- m_nFields = 4;
- //}}AFX_FIELD_INIT
- m_nDefaultType = dbOpenDynaset;
- }
- CString CDataTable::GetDefaultDBName()
- {
- return GetDBName();
- }
- CString CDataTable::GetDefaultSQL()
- {
- return _T("[Data]");
- }
- void CDataTable::DoFieldExchange(CDaoFieldExchange* pFX)
- {
- //{{AFX_FIELD_MAP(CDataTable)
- pFX->SetFieldType(CDaoFieldExchange::outputColumn);
- DFX_Long(pFX, _T("[lID]"), m_lID);
- DFX_Long(pFX, _T("[lDataID]"), m_lDataID);
- DFX_Text(pFX, _T("[strClipBoardFormat]"), m_strClipBoardFormat);
- DFX_LongBinary(pFX, _T("[ooData]"), m_ooData);
- //}}AFX_FIELD_MAP
- }
- /////////////////////////////////////////////////////////////////////////////
- // CDataTable Member Functions
- // assigns the new autoincr ID to m_lID
- void CDataTable::AddNew()
- {
- CDaoRecordset::AddNew();
- // get the new, automatically assigned ID
- COleVariant varID;
- GetFieldValue("lID", varID);
- m_lID = varID.lVal;
- }
- // caller must free
- // takes m_ooData's HGLOBAL (do not update recset after calling this)
- // This should be faster than making a copy, but is this SAFE ??
- HGLOBAL CDataTable::TakeData()
- {
- // if there is nothing to take
- if( m_ooData.m_hData == 0 || m_ooData.m_dwDataLength == 0 )
- return 0;
- // Unlock the handle that was locked by DaoLongBinaryAllocCallback()
- // (through DFX_LongBinary()).
- ::GlobalUnlock( m_ooData.m_hData );
- // we have to do a realloc in order to make the hGlobal m_dwDataLength
- HGLOBAL hGlobal = ::GlobalReAlloc(m_ooData.m_hData, m_ooData.m_dwDataLength, GMEM_MOVEABLE );
- if( !hGlobal || ::GlobalSize(hGlobal) == 0 )
- {
- TRACE0( GetErrorString(::GetLastError()) );
- //::_RPT0( _CRT_WARN, GetErrorString(::GetLastError()) );
- ASSERT(FALSE);
- }
- // no longer valid
- m_ooData.m_hData = 0;
- m_ooData.m_dwDataLength = 0;
- return hGlobal;
- }
- // this takes ownership of hgData, freeing m_ooData if necessary
- // This should be faster than making a copy, but is this SAFE?
- // looks like it is safe based upon:
- // http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/q152/5/33.asp&NoWebContent=1
- // http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/q119/7/65.asp&NoWebContent=1
- BOOL CDataTable::ReplaceData( HGLOBAL hgData, UINT len )
- {
- if( m_ooData.m_hData )
- ::GlobalFree( m_ooData.m_hData );
- m_ooData.m_hData = hgData;
- m_ooData.m_dwDataLength = len;
- //Set the fields dirty
- SetFieldDirty(&m_ooData);
- SetFieldNull(&m_ooData,FALSE);
- return TRUE;
- }
- // copies hgData into m_ooData
- BOOL CDataTable::SetData( HGLOBAL hgData, UINT size )
- {
- UINT unSize = (size < 0)? ::GlobalSize(hgData) : size;
- //Reallocate m_ooData.m_hData
- if(m_ooData.m_hData)
- m_ooData.m_hData = ::GlobalReAlloc(m_ooData.m_hData, unSize, GMEM_MOVEABLE);
- else
- m_ooData.m_hData = ::GlobalAlloc(GHND, unSize);
- m_ooData.m_dwDataLength = unSize;
- ::CopyToGlobalHH( m_ooData.m_hData, hgData, unSize );
- //Set the fields dirty
- SetFieldDirty(&m_ooData);
- SetFieldNull(&m_ooData,FALSE);
- return TRUE;
- }
- // allocates a new copy of the data
- HGLOBAL CDataTable::LoadData()
- {
- HGLOBAL hGlobal;
- ULONG ulBufLen = m_ooData.m_dwDataLength; //Retrieve size of array
- if( ulBufLen == 0 || m_ooData.m_hData == 0 )
- return 0;
- hGlobal = NewGlobalH( m_ooData.m_hData, ulBufLen );
- return hGlobal;
- }
- void CDataTable::CopyRec( CDataTable& src )
- {
- m_strClipBoardFormat = src.m_strClipBoardFormat;
- SetData( src.m_ooData.m_hData, src.m_ooData.m_dwDataLength );
- }
- BOOL CDataTable::DeleteAll()
- {
- BOOL bRet = FALSE;
- try
- {
- theApp.EnsureOpenDB();
- theApp.m_pDatabase->Execute("DELETE * FROM Data", dbFailOnError);
- bRet = TRUE;
- }
- catch(CDaoException* e)
- {
- AfxMessageBox(e->m_pErrorInfo->m_strDescription);
- e->Delete();
- }
- return bRet;
- }
- void CDataTable::Open(LPCTSTR lpszFormat,...)
- {
- m_pDatabase = theApp.EnsureOpenDB();
- CString csText;
- va_list vlist;
- ASSERT(AfxIsValidString(lpszFormat));
- va_start(vlist,lpszFormat);
- csText.FormatV(lpszFormat,vlist);
- va_end(vlist);
-
- CDaoRecordset::Open(AFX_DAO_USE_DEFAULT_TYPE, csText, 0);
- }
- void CDataTable::Open(int nOpenType, LPCTSTR lpszSql, int nOptions)
- {
- m_pDatabase = theApp.EnsureOpenDB();
-
- CDaoRecordset::Open(nOpenType, lpszSql, nOptions);
- }
- BOOL CDataTable::DataEqual(HGLOBAL hgData)
- {
- return ::CompareGlobalHH( hgData, m_ooData.m_hData, m_ooData.m_dwDataLength ) == 0;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CDataTable diagnostics
- #ifdef _DEBUG
- void CDataTable::AssertValid() const
- {
- CDaoRecordset::AssertValid();
- }
- void CDataTable::Dump(CDumpContext& dc) const
- {
- CDaoRecordset::Dump(dc);
- }
- #endif //_DEBUG
|