I am trying to connect to hive database and IRIS Intersystems Databases using jaydebeapi in python. I am able to connect to one database at a time. While trying to connect to other database, I am getting the below error
"Class org.apache.hive.jdbc.HiveDriver is not found"
or
"Class com.intersystems.jdbc.IRISDriver is not found"
lin1 -
hive_con = jd.connect(java_driver_class, jdbc_conn_url, [hive_user, hive_pass],jarfile)
lin2 -
iris_con = jd.connect(iris_driver_class, iris_conn_url, [iris_user, iris_pass],jarfile)

