Relational C++ Objects

By Eric Kass

Dr. Dobb's Sourcebook September/October 1997

DBObject* GetFirst(char *SQLFrom, char *SQLWhere=NULL);
DBObject* GetFirst(CLASSID ClassID, char *SQLWhere=NULL);
DBObject* GetNext();

Example 1: The DBObjectQuery class provides the query mechanism used for all data searches.

Back to Article