C++DB is the database layer that was designed to work with C++CMS. This customized version is used within Ye Ol' Pi Shack.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

57 lines
1.8 KiB

  1. /*! \page changelog Changelog
  2. \section changelog_v0_3_1 Version 0.3.1
  3. New Features:
  4. - Added an experimental support of Borland Build 6. Thanks to Thorsten Schöning who provided the patch.
  5. - Added support of LIBDIR cmake option to handle correctly Red-Had distributions
  6. Bugs:
  7. - Fixed bug #3536452:
  8. - \c cppdb::transaction::~transaction() could leak exception
  9. - \c busy_timeout option was not working for sqlite3 backend
  10. - Fixed incorrect use of SQLITE_STATIC that could cause crash
  11. \section changelog_v0_3_0 Version 0.3.0
  12. New Features:
  13. - Added session specific storage for custom data
  14. - Added support of one time initialization
  15. - Added version number API
  16. - Added an option to clear the connections pool
  17. - Changed library version format to Major.Minor.Patch
  18. - Added \c busy_timeout option to sqlite3 backend.
  19. Bugs:
  20. - Fixed bug #3451653 - disconnected connections are recycled to the pool
  21. - Fixed issue #3439445 - build problem on some distributions
  22. \section changelog_v0_0_4 Version 0.0.4
  23. New Features:
  24. - Added empty() and clear() members for cppdb::statement
  25. - Added an option to provide default value when the value is NULL in result::get()
  26. instead of throwing an exception. Thanks to Krzysztof Wrzalik.
  27. Bugs:
  28. - Switched to using ODBC as internal backend by default due to multiple issues with dynamic unloading of ODBC backend. Now if you want to use it dynamically you must sed the build option \c -DODBC_BACKEND_INTERNAL=OFF
  29. - Build issue of PostgreSQL with MSVC compiler.
  30. - Various fixes for FreeBSD, Solaris and Darwin
  31. - Fixed bug #3317277: a exception is not thrown when connection to PostgreSQL server could not be established.
  32. - Fixed bug #3439445: added search path to PostgreSQL headers for some Linux distributions.
  33. \section changelog_v0_0_3 Version 0.0.3
  34. - Changed a license from LGPL to dual license Boost/MIT
  35. */