>데이터 베이스 >MySQL 튜토리얼 >jdbc- 连接mysql老是出现连接失败?

jdbc- 连接mysql老是出现连接失败?

WBOY
WBOY원래의
2016-06-06 09:45:411319검색

mysqljdbcjava

新建的java工程,测试代码如下,已经把驱动程序拷贝到JRE system liabrary 中
package com.test.tao;

import java.sql.*;
public class Test {
public static void main(String args[])
{
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.print("加载数据库成功");
String str="jdbc:mysql://localhost:3306/test?"+"user=root&password=123456";
Connection conn=DriverManager.getConnection(str);

System.out.print("连接成功");
}
catch (Exception e)
{System.out.print("连接失败");}
}

}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.