Beginners question to error in bdb -
10-24-2005
, 09:29 PM
Any help would be great,
I am compiling my project with lccwin32 and I built the latest version
of sleepycat in vc++ 6.0 (as a dynamic library of course).
It dumps on the third line (the open statement)
DB *dbp;
DB_ENV *denv;
ret = db_env_create(&denv,0);
ret = db_create(&dbp, denv, 0);
ret = dbp->open(dbp,"dummy.db","dummy",DB_BTREE,1,0);
and I get this error
Exception 0xc0000005
Segment violation
Address 0x0
any ideas and places I can look?
Thanks |