连接到Wampserver数据库

时间:2012-02-19 15:32:42

标签: mysql database wampserver

我正在使用JSP,我希望通过我的Java文件连接到本地mySQL数据库。

我有这个:

连接连接= DriverManager.getConnection((database_path),“admin”,“admin”);

路径应该是什么?

1 个答案:

答案 0 :(得分:2)

this example中详细说明了这些设置。

String connectionURL = "jdbc:mysql://localhost:3306/usermaster"; 
...
Connection connection = DriverManager.getConnection(connectionURL, "root", "root");