Whats Wrongin folloowind code for connecting with mysql

Reply

Join Date: Oct 2007
Posts: 3
Reputation: Rajesh.D.N is an unknown quantity at this point 
Solved Threads: 0
Rajesh.D.N Rajesh.D.N is offline Offline
Newbie Poster

Whats Wrongin folloowind code for connecting with mysql

 
0
  #1
Oct 15th, 2007
<html><body>

<%@ page import="java.sql.*" %>

<%

String user="root@localhost"; // root itself
String password="pwdl";
String connectionURL = "jdbc:mysql://localhost/Database_name";

Connection connection = null;

Statement statement = null;

ResultSet rs = null;
Class.forName("com.mysql.jdbc.Driver").newInstance();
connection = DriverManager.getConnection(connectionURL, user, password);
statement = connection.createStatement();
rs = statement.executeQuery("SELECT * table");

while (rs.next())
{
out.println(rs.getString("name")+"<br>"+rs.

getString("emailid")+"<br>"+rs.getString("contents

")+"<br>");
}

rs.close();

%>

</body></html>
Reply With Quote Quick reply to this message  
Join Date: Feb 2006
Posts: 2,391
Reputation: masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of 
Solved Threads: 254
Moderator
masijade's Avatar
masijade masijade is offline Offline
Nearly a Posting Maven

Re: Whats Wrongin folloowind code for connecting with mysql

 
0
  #2
Oct 15th, 2007
1) This code should not be in a scriptlet. Move the query part out to a bean.

2) Use a connection pool, or open the connection in a session object (although this type of persistence is frowned upon) because opening a connection for every page load is extremely inefficient.

3) if you absolutely must use scriptlets (which you don't, but you may insist on it) then at least don't mix "html tag" strings into the middle of the scriptlet, that is just blurring the separation (and increasing the maintenance load) all that much more.

4) The user would generally be simply "root", as opposed to "root@localhost". The MySQL server will resolve the "@whatever" part itself, depending on where you connect from. Make sure you have the user@whatever login allowed over TCP in your MySQL configuration.

I think those are enough problems for now.
Last edited by masijade; Oct 15th, 2007 at 9:59 am. Reason: typo
Java Programmer and Sun Systems Administrator

----------------------------------------------

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
--Brian Kernighan
Reply With Quote Quick reply to this message  
Join Date: Oct 2007
Posts: 3
Reputation: Rajesh.D.N is an unknown quantity at this point 
Solved Threads: 0
Rajesh.D.N Rajesh.D.N is offline Offline
Newbie Poster

Re: Whats Wrongin folloowind code for connecting with mysql

 
0
  #3
Oct 15th, 2007
No i dint get what u said.
I changed that root@localhost to root, i am getting ststus-500, internal error(). Plz can u sort out this problem
Reply With Quote Quick reply to this message  
Join Date: Feb 2006
Posts: 2,391
Reputation: masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of 
Solved Threads: 254
Moderator
masijade's Avatar
masijade masijade is offline Offline
Nearly a Posting Maven

Re: Whats Wrongin folloowind code for connecting with mysql

 
0
  #4
Oct 15th, 2007
The actual error message and stacktrace would help. The status 500 message simply tells you something went wrong, not what. Look in the logs for your application for the actuall error (not that I think it's going to help). If you didn't understand what I said, then you have a large learning curve in front of you, and you should read a couple of good tutorials before continuing.
Java Programmer and Sun Systems Administrator

----------------------------------------------

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
--Brian Kernighan
Reply With Quote Quick reply to this message  
Join Date: Aug 2007
Posts: 80
Reputation: lookof2day is an unknown quantity at this point 
Solved Threads: 10
lookof2day lookof2day is offline Offline
Junior Poster in Training

Re: Whats Wrongin folloowind code for connecting with mysql

 
0
  #5
Oct 17th, 2007
  1. String user="root@localhost"
should be
  1. String user="root";
Reply With Quote Quick reply to this message  
Join Date: Feb 2006
Posts: 2,391
Reputation: masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of masijade has much to be proud of 
Solved Threads: 254
Moderator
masijade's Avatar
masijade masijade is offline Offline
Nearly a Posting Maven

Re: Whats Wrongin folloowind code for connecting with mysql

 
0
  #6
Oct 17th, 2007
He's already been told this, and then will only say that he gets a 500 status back, but has not provided an error message yet. I am willing to bet it is the mysql user configuration now.
Java Programmer and Sun Systems Administrator

----------------------------------------------

Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
--Brian Kernighan
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC