There are too many limitation in using the IceE, so I decided to port the full version of Ice to my board, now everything are OK except the Frezze service, it is the problem of the porting of BerkeleyDB.
here is the code from BerkeleyDB documentation,
DbEnv myEnv(0);
try {
myEnv.open(envHome.c_str(), env_flags, 0);
} catch(DbException &e) {
std::cerr << "Error opening database environment: " << envHome << std::endl;
std::cerr << e.what() << std::endl;
exit( -1 );
} catch(std::exception &e) {
std::cerr << "Error opening database environment: " << envHome << std::endl;
std::cerr << e.what() << std::endl;
exit( -1 );
}
but got the following error, do you know what is the problem?
Error opening database environment: ./testEnv
My DbEnv:
pen: Function not implemented