Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java mySQL with 000webhost

Tags:

java

mysql

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.

like image 225
Kuba Wasilczyk Avatar asked Aug 31 '25 01:08

Kuba Wasilczyk


1 Answers

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?

like image 86
Math Avatar answered Sep 02 '25 15:09

Math