ORA-01013: user requested cancel of current operation

From: GoodLight <goodlightt_at_yahoo.com>
Date: 2000/04/13
Message-ID: <8d21rr$im83_at_imsp212.netvigator.com>#1/1


I got the error ORA-01013: user requested cancel of current operation when the following code is running.

import java.io.*;
import java.sql.*;
import java.util.*;

import oracle.sql.*;
import oracle.jdbc.driver.*;

public abstract class Manager {

        try {
            BLOB blob = ((OracleResultSet)rs).getBLOB(index);
            System.out.println("fetched doc blob.length() = " +
blob.length());
            InputStream inStream = blob.getBinaryStream();
            byte[] data = new byte[(int)blob.length()];
            inStream.read(data);
            return data;

}
catch(Exception e){ System.out.println(e.getMessage());
}
return null;

} Received on Thu Apr 13 2000 - 00:00:00 CEST

Original text of this message