0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

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

0
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?