Author
What should be the connection URL
Mahesh Lohi
Ranch Hand
Joined: Jun 22, 2009
Posts: 150
Hi all,
I use two systems. I have placed the DB in one of the system(server) and would like to insert and select data from the second system.
my connection is String url=("jdbc:mysql://localhost:3306/warehouse?"+"user=root&password=123456");
Now what should I change my url string to, so that I can access the warehouse database via the client system
Thank you in advance
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35429
posted Dec 24, 2009 02:01:14
0
You'd replace "localhost" by the name (or IP address) of the DB server, "3306" by the port number on which the server is listening, "warehouse" by the name of the DB schema you want to access, "root" by the username, and "123456" by the user's password.
Android apps – ImageJ plugins – Java web charts
Mahesh Lohi
Ranch Hand
Joined: Jun 22, 2009
Posts: 150
Thank you for the quick response.. is DB schema different from my db name
Thank you in advance
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35429
posted Dec 24, 2009 02:30:09
0
No, that's the same.
subject: What should be the connection URL