Re: Can not compile cxx examples -
02-03-2005
, 05:03 PM
Hi,
I think this is indicating some problem in your STL installation.
If you can't fix your system, you can have DB avoid this header file:
* remove the line "#include <exception.h" from db_cxx.h
* change this line:
class _exported DbException : public __DB_STD(exception)
to this:
class _exported DbException
Of course, after this change, you will not be able to catch DbException
objects with a "catch(exception)", but it should work around the build
problem.
Regards,
Michael. |