Advertisement

08.28.2008 at 10:16PM PDT, ID: 23687971
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.7

Problem with connection to SQL Server 2005 with JDBC

Asked by jared_mj in SQL Server 2005, Java Programming Language

Tags: , , ,

Hi all,
I am having trouble connecting to my server via JDBC. Attached is my code for the connection. The driver is definitely loaded correctly because I get past that error. I have gone into configurations and double checked that TCP/IP is enabled on the server. Any help is appreciated-

My error is:
SQLException: The TCP/IP connection to the host  has failed. java.net.UnknownHostException:
Could not Get Connection

Thanks in advance.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
String userid="sa", password = "sasasa";
String url = "jdbc:sqlserver://localhost/testDB:1433";
Connection con = null;
try {
  Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
} 
catch(java.lang.ClassNotFoundException e) {
  System.err.print("ClassNotFoundException: ");
  System.err.println(e.getMessage());
}
try {
  con = DriverManager.getConnection(url,userid,password);
} catch(SQLException ex) {
  System.err.println("SQLException: " + ex.getMessage());
}		
if(con!= null){
  System.out.println("Got Connection.");
  DatabaseMetaData meta = con.getMetaData();
  System.out.println("Driver Name : "+meta.getDriverName());
  System.out.println("Driver Version : "+meta.getDriverVersion());
}
else{
  System.out.println("Could not Get Connection");
}
 
Keywords: Problem with connection to SQL Serve…
 
Loading Advertisement...
 
[+][-]08.28.2008 at 11:03PM PDT, ID: 22342850

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.28.2008 at 11:20PM PDT, ID: 22342916

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.28.2008 at 11:43PM PDT, ID: 22342990

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: SQL Server 2005, Java Programming Language
Tags: Java, JDBC with SQL Server 2005, 2005, Java and SQL
Sign Up Now!
Solution Provided By: melchkishore
Participating Experts: 2
Solution Grade: B
 
 
[+][-]08.29.2008 at 12:56PM PDT, ID: 22348751

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.30.2008 at 03:19AM PDT, ID: 22351258

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.31.2008 at 02:52PM PDT, ID: 22356516

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08.31.2008 at 06:37PM PDT, ID: 22357047

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08.31.2008 at 11:05PM PDT, ID: 22357769

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 08:28AM PDT, ID: 22361099

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 11:12AM PDT, ID: 22361965

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 11:12AM PDT, ID: 22361967

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]09.01.2008 at 12:28PM PDT, ID: 22362305

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-42 / EE_QW_2_20070628