Skip to content

Commit 93d69d8

Browse files
Make samples point to python-oracledb at runtime.
1 parent 83774f9 commit 93d69d8

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

samples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**cx_Oracle has a major new release under a new name and homepage
66
[python-oracledb](https://oracle.github.io/python-oracledb/).**
77

8-
**New projects should install python-oracledb instead of cx_Oracle.**
8+
**New projects should install python-oracledb instead of cx_Oracle: python -m pip install oracledb**
99

1010
**The new source code and samples can be found at
1111
[github.com/oracle/python-oracledb](https://github.com/oracle/python-oracledb).**

samples/sample_env.py

+13
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,19 @@
4141
# user for on premises databases is SYSTEM.
4242
#------------------------------------------------------------------------------
4343

44+
print("""
45+
46+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
47+
!!! cx_Oracle was renamed to python-oracledb. !!!
48+
!!! Use python-oracledb instead of cx_Oracle for development. !!!
49+
!!! Install with: !!!
50+
!!! python -m pip install oracledb !!!
51+
!!! and use the new samples in: !!!
52+
!!! https://github.com/oracle/python-oracledb/tree/main/samples !!!
53+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
54+
55+
""")
56+
4457
import getpass
4558
import os
4659
import sys

0 commit comments

Comments
 (0)