MySQL Driver URL Sample

MySQL Driver URL Sample

Sometimes while working on application which connects to MySQL data base you need handy driver class name and its URL so that it won’t kill your time for searching:

  • Sample MySQL database configuration detail:
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/JavaHonk
jdbc.username=root
jdbc.password=admin
  • To download its driver jar mysql-connector-java-x.x.jar please visit maven repository here

Leave a Reply

Your email address will not be published. Required fields are marked *