java - How to get remote access to a MySQL database on my computer? -
i've read around lot , tried suggestions nothing seems working.
i want java program able remotely access database on computer. tried using ip address host name doesn't work. thing allows program connect database using localhost host name.
would work use localhost host name? (jdbc url - jdbc:mysql://hostname/dbname)
if java program running on different computer 1 mysql running on, may need set user privileges in mysql allow remote connections it.
mysql> grant privileges on . 'username'@'%' identified 'password'
Comments
Post a Comment