Programming Tutorials

Comment on Tutorial - Using JDBC to connect to MySQL from Java Program By Rajan



Comment Added by : Java Training Institute In Chennai

Comment Added at : 2012-09-13 12:37:44

Comment on Tutorial : Using JDBC to connect to MySQL from Java Program By Rajan
MySQL Connector/J supports only TCP/IP connections
Java does not support Unix domain sockets connectivity

If the MYSQL is started with skip-networking flag or if the MySQL is running behind the firewall, then TCP/IP option is disabled. So that Java cannot communicate with MySQL.


View Tutorial