Database
ccdbms.txt
Associated article: Concurrent Database Commands and C++
Tags: Database
Published source code accompanying the article by Harold Kasperink and John Dekker in which they use Oracle ProC as an embedded database command language to resolve multithreaded porting problems using design patterns. See the subdirectory CCDBMS for uncompressed source code and related files, and CCDBMS.ZIP for compressed versions.
_Concurrent Database Commands and C++_
by Harold R. Kasperink and John C. Dekker
Listing One
class CThread;
void ThreadFunc(CThread *);
class CThread
{
public:
CThread();
virtual ~CThread();
void Create();
void Cancel();
void Detach();
void Join();
friend void ThreadFunc(CThread *);
virtual void ...


