Advertisement
Guest User

Untitled

a guest
Nov 29th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. spark
  2. .read
  3. .format("jdbc")
  4. .option("url", "jdbc:mysql://localhost:3306/mydb")
  5. .option("driver", "com.mysql.jdbc.Driver")
  6. .option("dbtable", "mydb")
  7. .option("user", "root")
  8. .option("password", "")
  9. .load()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement