ks_on_v
ks_on_v

Reputation: 237

cx_Oracle backward compatible?

On my server installed cx_Oracle of 5.3 version.

I want to update in to 6 version. But I'm afraid that python scripts, which are now on the server, stop working with the new version.

cx_Oracle backward compatible?

Upvotes: 0

Views: 60

Answers (1)

Christopher Jones
Christopher Jones

Reputation: 10506

To get an idea of what's changed and might affect your app, review the release notes at http://cx-oracle.readthedocs.io/en/latest/releasenotes.html Also see https://blogs.oracle.com/opal/python-cx_oracle-6-production-release

The fundamental software rule when upgrading versions is to test it with your application.

Upvotes: 1

Related Questions