Hello Ron
I am using dbtable only
final_result = (spark.read.format("jdbc")\
.option("url", jdbcUrl)
.option("driver", "com.intersystems.jdbc.IRISDriver")
.option("dbtable", f"({sql}) as temp;")
.option("user", user)
.option("password", password)
.option("sslConnection","true")
.load())
This works fine until I add one specific column from the same table, when I add that column I get following error
< Input (;) encountered after end of query
using - intersystems-jdbc-3.8.0.jar
Kindly help
- Log in to post comments