java连接MySql数据库,我写了个直接返回连接对象的方法:

static Connection getMySqlConnection()
{
    //加载驱动程序
    try
    {
    	//数据库名:newsdb2	用户名:root	密码:123456
        String strConnString = "jdbc:mysql://localhost:3306/newsdb2?user=root&password=123456&useUnicode=true&characterEncoding=UTF-8";
        Class.forName ("com.mysql.jdbc.Driver");
        return DriverManager.getConnection (strConnString);
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    return null;
}

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


您的十分满意是我追求的宗旨。

您的一点建议是我后续的动力。






本文转载:CSDN博客