Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Connecting to mySql database from Java
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Connecting to mySql database from Java
Connecting to mySql database from Java
30-09-2007 11:30 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I'm trying to establish a connection to mySql database from within a Java class I'm developing. The Java statement I'm using is in the format of:
Connection con = DriverManager.getConnection(fileURL, userName, passWord);
My question is: What fileURL should I use to connect to my database (it's on the rumpus server)?
Connection con = DriverManager.getConnection(fileURL, userName, passWord);

Message 1 of 2
(1,579 Views)
1 REPLY 1
Re: Connecting to mySql database from Java
30-09-2007 9:23 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Can't believe I missed it! 
Of course, the fileURL is whatever name I used to register the database with the ODBC Data Source Administrator! Providing the db is configured correctly with the mySQL ODBC driver and this picks up the rumpus.plus.net server, the connection should work.
... and it does!
Thanks to Richard G. Baldwin and his article for pointing me in the right direction:
http://www.developer.com/java/data/article.php/3417381

Of course, the fileURL is whatever name I used to register the database with the ODBC Data Source Administrator! Providing the db is configured correctly with the mySQL ODBC driver and this picks up the rumpus.plus.net server, the connection should work.
... and it does!
Thanks to Richard G. Baldwin and his article for pointing me in the right direction:
http://www.developer.com/java/data/article.php/3417381
Message 2 of 2
(359 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Connecting to mySql database from Java