Try this,


Statemet stmt2;
Connection conn;  // Or your connection name
ResultSet rs;

 try {
                      conn = 
DriverManager...........................................(your
jdbc driver)
                       stmt=conn.createStatement();
                        rs=stmt.executeQuery("SELECT * FROM Temp where 
CID='"+cid+"';");
                        while (rs.next()){
                                stmt2=conn.createStatement();
                                stmt2.executeUpdate("INSERT INTO OrderItem
VALUES("+rs.getString(2)+","+oid+",'"+rs.getString(3)+"','"+rs.getString(4)+
"');");
                                stmt2.close();
                        }
                }
                catch (Exception e){error=""+e;}

Jenn wrote:

> Hi all,
>
>         I am having trouble trying to get the code below to work because it seems
> that the ResultSet rs gets corrupted whenever I run the statement to
> execute the SQL! The first insertion into the Temp table is executed, but
> after which the ResultSet becomes corrupted, the rs.next() becomes an
> invalid cursor state.
>
>                 try {
>                         rs=stmt.executeQuery("SELECT * FROM Temp where 
>CID='"+cid+"';");
>                         while (rs.next()){
>                                 stmt.executeUpdate("INSERT INTO OrderItem
> VALUES("+rs.getString(2)+","+oid+",'"+rs.getString(3)+"','"+rs.getString(4)+
> "');");
>                         }
>                 }
>                 catch (Exception e){error=""+e;}
>
> Please help on how to solve this problem
>
> Thanks in advance :)
> Jenn
>
> ___________________________________________________________________________
> 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

--
**************************************************
 Ugur KARAKAYA
 NOUS Bilgisayar Sistemleri A.S.
 NOUS Computer Systems Co.
 http://www.nous.com.tr/
 Unite for Java -> http://www.javalobby.org
**************************************************

S/MIME Cryptographic Signature

Reply via email to