Hi,



I am getting an error like.... Invalid operation for read only resultset



Here is the code..

  Driver DriverRecordset =
(Driver)Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
Connection con = DriverManager.getConnection("xyz..");

Statement stmt = con.createStatement(ResultSet.TYPE_FORWARD_ONLY
,ResultSet.CONCUR_UPDATABLE);



ResultSet rs = stmt.executeQuery("SELECT * FROM   UPLOAD where FILE_NAME =
'bbbb'");


// if the resultset is not null
if (rs.next()){

  // Initialization
  mySmartUpload.initialize(pageContext);

  // Upload
  mySmartUpload.upload();

  // upload file in the DB if this file is not missing
  if (!mySmartUpload.getFiles().getFile(0).isMissing()){

   try {



//here I am getting error.. like An error occurs :
//java.sql.SQLException: Invalid operation for read only resultset:


    rs.updateString("FILE_NAME",
mySmartUpload.getFiles().getFile(0).getFileName());

    // Add the current file in the DB field

    mySmartUpload.getFiles().getFile(0).fileToField(rs,"ATTACHMENT");

    // Update

    rs.updateRow();
    count++;

   } catch(Exception e) {
    out.println("An error occurs : " + e.toString());
   }

  }

}





Please help me in this, I will thankfull to u..





Thanks,
Malla Reddy

[EMAIL PROTECTED]

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com

___________________________________________________________________________
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