SOCI / soci

Official repository of the SOCI - The C++ Database Access Library
http://soci.sourceforge.net/
Boost Software License 1.0
1.37k stars 472 forks source link

Avoid MSVC deprecation warnings for oracle_blob_backend functions #1137

Closed vadz closed 3 months ago

vadz commented 3 months ago

Overriding a deprecated virtual function results in a warning, at least when using MSVS, so don't do this and override a non-deprecated private virtual function called from the deprecated public ones.

No real changes, just refactor the code to avoid warnings.