Click here to Skip to main content
15,892,253 members
Articles / Desktop Programming / MFC

CByteArrayFile - storing objects in databases using DAO

Rate me:
Please Sign up or sign in to vote.
4.42/5 (6 votes)
17 Mar 2000 75.8K   2.2K   27  
A class used to serialize object into a database field
// ByteArrayFile.h: interface for the CByteArrayFile class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BYTEARRAYFILE_H__39452724_D30B_11D2_848A_0000E85B73B5__INCLUDED_)
#define AFX_BYTEARRAYFILE_H__39452724_D30B_11D2_848A_0000E85B73B5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CByteArrayFile : public CMemFile  
{
	DECLARE_DYNAMIC(CByteArrayFile)

public:
	CByteArrayFile(UINT nGrowBytes = 4096);
	virtual ~CByteArrayFile();

// Attributes
	CByteArray* Detach();
	void SetArray(CByteArray* pArray, BOOL bAllowGrow = TRUE);

protected:
	virtual BYTE* Alloc(DWORD nBytes);
	virtual BYTE* Realloc(BYTE* lpMem, DWORD nBytes);
	virtual void Free(BYTE* lpMem);

protected:
	BOOL m_bAllowGrow;
	CByteArray*		m_pByteArray;
};

#endif // !defined(AFX_BYTEARRAYFILE_H__39452724_D30B_11D2_848A_0000E85B73B5__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions