Reputation: 455
I'm using JSP and I want to connect to a local mySQL database thorough my Java files.
I have this :
Connection connection = DriverManager.getConnection((database_path),"admin","admin");
What should the path be?
Upvotes: 0
Views: 3348
Reputation: 82
The settings are well explained in this example.
String connectionURL = "jdbc:mysql://localhost:3306/usermaster";
...
Connection connection = DriverManager.getConnection(connectionURL, "root", "root");
Upvotes: 2