LoginSignup
0
0

More than 1 year has passed since last update.

python-oracledbでDPY-3015が出た時の対策

Posted at

TL;DR

terminal
$ pip install oracledb
test.py
import oracledb

oracledb.init_oracle_client() # <- これが重要!!!

con = oracledb.connect('%connect_string%')
cur = con.cursor()

cur.execute('SELECT * FROM dba_users')
for row in cur:
    print(row[0])

cur.close()
con.lose()

cf. 3.1. Enabling python-oracledb Thick mode

// 本文は後でかきます

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0