0

我正在尝试建立与远程 mysql 数据库的连接。我已将 jar 连接器放入war/WEB-INF/lib文件夹并添加了一个库(构建路径)。

我仍然收到此错误:

java.sql.SQLException: No suitable driver found for jdbc:sql4.freemysqlhosting.net
    at java.sql.DriverManager.getConnection(Unknown Source)

这是完整的代码:

/**
 * 
 */
package com.infograph.dbconnection;

import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.SQLException;

/**
 * @author Vlad
 *
 */
public class DBConnection 
{
    /**
     * 
     */
    public DBConnection() 
    {
        try 
        {
            Class.forName("com.mysql.jdbc.Driver");
        } 
        catch (ClassNotFoundException e) 
        {
            System.out.println("Where is your MySQL JDBC Driver?");
            e.printStackTrace();
            return;
        }

        System.out.println("MySQL JDBC Driver Registered!");
        Connection connection = null;

        try 
        {
            connection = DriverManager.getConnection("jdbc:sql4.freemysqlhosting.net","user", "pass");

        } 
        catch (SQLException e1) 
        {
            System.out.println("Connection Failed! Check output console");
            e1.printStackTrace();
            return;
        }

        if (connection != null) 
        {
            System.out.println("You made it, take control your database now!");
        } 
        else 
        {
            System.out.println("Failed to make connection!");
        }
    }
}

问题是什么??10倍!

4

2 回答 2

1

我认为你打算使用的是

connection = DriverManager.getConnection("jdbc:mysql://sql4.freemysqlhosting.net","user", "pass");

您可能需要添加端口号和模式名称。

您提供的 URLjdbc:sql4.freemysqlhosting.net无效,或者至少看起来不像。

于 2013-10-08T20:23:18.313 回答
1

您的连接 url 必须采用 jdbc:mysql://hostname:port/schema 格式,以便 DriverManager 确定要使用的驱动程序。这里有更多关于这个: http ://dev.mysql.com/doc/refman/5.0/en/connector-j-reference-configuration-properties.html

于 2013-10-08T20:26:15.153 回答