Guest User

Untitled

a guest
Aug 28th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. DATA DIVISION.
  2. WORKING-STORAGE SECTION.
  3. DO-CONNECT.
  4. STRING "jdbc:mysql://***ip****/***database**?"
  5. DELIMITED BY SIZE
  6. "user=root"
  7. "password=root"
  8. DELIMITED BY SIZE
  9. INTO JdbcString
  10. EXEC SQL
  11. CONNECT
  12. TO :JdbcString
  13. DRIVER "com.mysql.jdbc.Driver"
  14. END-EXEC
  15. .
Add Comment
Please, Sign In to add comment