怎么连接mysql 急....在线等.

来源:百度知道 编辑:UC知道 时间:2024/05/27 08:38:01
安装好 apache php mysql后.. 要连接mysql 也就是要将apache与mysql连接起来.
以前我有个朋友跟我说了段代码 在运行中连接 我忘记了. 哪位老大知道的..急...
老大...是将apache 和mysql 连接起来 我的apache无法找到mysql.

import java.sql.*;
public class conn1
{
public static void main(String[] args)
{

try{
Class.forName("org.gjt.mm.mysql.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test?user=root&password=111111");

if (!con.isClosed())
System.out.println("成功!");
}
catch(Exception e){
System.out.println("无法连接数据库!");
e.printStackTrace();
}

}
}