943,692 Members | Top Members by Rank

Ad:
  • JSP Discussion Thread
  • Unsolved
  • Views: 531
  • JSP RSS
Jun 4th, 2009
0

display corresponding values

Expand Post »
Hi, everyone i want to display the corresponding values when i click on the primary key ... How to do this in jsp...???

Thanks in advance
Reputation Points: 10
Solved Threads: 0
Newbie Poster
gautam.ap is offline Offline
1 posts
since Jun 2009
Jun 4th, 2009
0

Re: display corresponding values

Using request, response and SQL API.
Moderator
Reputation Points: 2136
Solved Threads: 1228
Posting Genius
adatapost is offline Offline
6,527 posts
since Oct 2008
Jun 4th, 2009
0

Re: display corresponding values

request method is one of the more basic one you sure u dont know that? or are you facing a different set of problem?
Reputation Points: 10
Solved Threads: 1
Light Poster
dreamer14 is offline Offline
31 posts
since Sep 2008
Jun 4th, 2009
0

Re: display corresponding values

Click to Expand / Collapse  Quote originally posted by dreamer14 ...
request method is one of the more basic one you sure u dont know that? or are you facing a different set of problem?
Why you are not coding? Please code and if you get some problems then ask for help.

Jsp Syntax (Toggle Plain Text)
  1. ...
  2. Class.forName("DB Driver");
  3. Connection cn=DriverManager.getConnection(url,username,password);
  4. Statement st=cn.createStatement();
  5. ResultSet rs=st.executeQuery("select * from tab where pkcol='" + request.getParameter("pk_text") + "'");
  6. if(rs.next()) { // Found
  7. ....
  8. out.println(rs.getString(1) + ...... );
  9. }
  10. else
  11. out.println("Not found");
  12. ...
Moderator
Reputation Points: 2136
Solved Threads: 1228
Posting Genius
adatapost is offline Offline
6,527 posts
since Oct 2008

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in JSP Forum Timeline: email sendin with jsp
Next Thread in JSP Forum Timeline: Session in jsp





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC