Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hi all, Can anyone tell me how t

Status
Not open for further replies.

garfield11

IS-IT--Management
Jul 4, 2002
44
SG
Hi all,

Can anyone tell me how to solve this error?

Generated servlet error:
C:\Tomcat4\work\Standalone\localhost\_\example2$jsp.java:82: Class org.apache.jsp.ResultSet not found.
ResultSet rs = st.executeQuery(query);

Thanks.

Love_Garfield [gorgeous]
 
Did you use the proper import and spell the class name right? Also make sure the extra packages exist and are installed.
 
ResultSet is part of the java.sql package.

As javadude32 says :

"import java.sql.*;" will solve the problem.
Maybe. Should. Hope so.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top