School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!

Welcome to Dream.In.Code
Become an Expert!

Join 300,464 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,690 people online right now. Registration is fast and FREE... Join Now!




How to connect to database on my university server from my pc

 

How to connect to database on my university server from my pc

kmangala77

11 Apr, 2009 - 05:10 PM
Post #1

New D.I.C Head
*

Joined: 11 Apr, 2009
Posts: 1

Hi,
I am a grad student and having problem with connecting to database Mysql in our University's server. I have used the following code to connect. When I run this application I am getting communication failed error.Any help will be greatly appreciated.
CODE

import java.sql.*;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.net.*;

public class test {

    static public final String driver = "com.mysql.jdbc.Driver";
    static public final String connection =
        "jdbc:mysql://cs.metrostate.edu:3306/test" + "?autoReconnect=true" +
        "?user=ics625s916&password=4442&database=test";

    public static void main(String args[]) {

        try {
            Class.forName(driver).newInstance();
            Connection con = DriverManager.getConnection(connection);
            
            System.out.println("Jdbc Mysql Connection Url :");
            System.out.println(connection);

            if (!con.isClosed()) {
                con.close();
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}



User is offlineProfile CardPM
+Quote Post


Hary

RE: How To Connect To Database On My University Server From My Pc

12 Apr, 2009 - 02:30 AM
Post #2

D.I.C Regular
Group Icon

Joined: 23 Sep, 2008
Posts: 411



Thanked: 40 times
My Contributions
The URI is correct, so I guesst uni is blocking traffic from outside the building to the database server. Ay my university, I have to use a VPN connection to access those machines.
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic

Time is now: 11/8/09 02:29AM

Live Help!

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter Fan Us On Facebook

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month