Is there any standard Scala class/Object to create a simple connection with oracle database (using JDBC) but without loading a specific table ?
I just want to create a simple connection then pass some query (create/update, etc.) and finally close the connection.
i have seen a code like :
val jdbcDF = spark.read
.format("jdbc")
.option("url", "jdbc:postgresql:dbserver")
.option("dbtable", "schema.tablename")
.option("user", "username")
.option("password", "password")
.load()
But it loads a specific table as mentionned in .option("dbtable", "schema.tablename").
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…