Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The code below will throw :

Exception in thread "main" java.sql.SQLException: Unable to connect to any hosts due to exception: java.lang.ArrayIndexOutOfBoundsException: 40

mysql 5.1, jdbc driver 5.1.21

If I change connection string to a database whose name's lengh != 9, it will pass to print connected. If I create other database named 123456789 it throws same exception.

I connect to other database on amazon s3, that have same name length, it throw

java.lang.ArrayIndexOutOfBoundsException: 43

This database version is

mysql  Ver 14.14 Distrib 5.5.28, for debian-linux-gnu (i686) using readline 6.2

any idea of this weird mysql behavior, thanks


public class MysqlConnection {
    public static void main(String[] args) throws Exception {
        Connection conn = null;         
        String userName = "root";
        String password = "123456";
        String url = "jdbc:mysql://localhost:3306/test12345";
        Class.forName ("com.mysql.jdbc.Driver").newInstance ();

        conn = DriverManager.getConnection (url,userName, password);
        System.out.println ("Connected");

    }

}
share|improve this question
I actually use mysql-connector-java-3.0.9-stable-bin.jar, not 5.1 3.0.9 make this error. this is a reference error. – Thang Hoang Nov 20 '12 at 6:48

migrated from serverfault.com Nov 20 '12 at 8:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.