Java theSQL with 000webhost

javaMySQL

I created a mySQL database on 000webhost and I wanted to connect it into my Java program but somehow driver aren't receiving sockets. Here is my code:

Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://mysql2.000webhost.com/a4931569_users/Users", username, pass);

where a4931569_users is database, Users is table. Please help me.

Best Answer

MySQL from 000webhost doesn't allow you to connect from external applications, just from within pages hosted in their domain.

Please check: How can I connect to MySQL from my computer?