View Single Post
Mentor
2Oct2008,23:15  
xpi0t0s's Avatar
You're not the only one unable to compile it. The code is dependent on dbmanager.h and won't build without it, and dbmanager.h (and any library or other source code it relates to) is not referenced anywhere. Simply removing #include <dbmanager.h> WON'T solve the problem because there are references within the code, i.e.:
Code:
DbManager* dbm = NULL;
dbm = new DbManager(userName);
oras = dbm->getOracleServices();
Connection * conn = oras->connection();
delete dbm;
dbm->rollbackActions(ex, stmt, resultSet);
OP: how about providing dbmanager.h and dbmanager.cpp, or at least stating where it can be found, so that people can actually use this example?