I am trying to connect to Oracle database using JDBC in python 3 (jupyter notebook) using JayDeBeApi module but I am getting this error
__init__() missing 1 required positional argument: 'gateway_parameters'
Really appreciate the help to figure this out.
import jaydebeapi as jdbc
conn = jdbc.connect('oracle.jdbc.driver.OracleDriver',
["jdbc:oracle:thin:.","username","password"],"\\path-to-ojdbc6.jar")
curs = conn.cursor()