Hi,

In one of my Servlet codes I have the following code Segment. How can I get
the value of MAX(price) to  a variable using getInt("...");




..
..
......
try{
 Statement stmt=con2.createStatement();
 ResultSet rs=stmt.executeQuery("Select   MAX(marks) from Marks_Table");
 if(rs.next())
  {
  maxMarks=rs.getInt(1);//gives run Time Errors

..

..
thanks in advance

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to