| Author |
invalid Handle exception!!
|
Naresh Rajan
Ranch Hand
Joined: Sep 08, 2005
Posts: 45
|
|
Hi i am developing an application which goes like this f= new FileOutPutSTream(fil2); b = new BufferOutPutStream(f); while(resultSet.next()){ b.write(resultSet.getString("asda").getBytes()); b.write(resultSet.getString("asda").getBytes()); b.write(resultSet.getString("asda").getBytes()); b.write(resultSet.getString("asda").getBytes()); //Calling a method which calls an insert SP insertASD(String,String,String); } If I have the insertASD() method then an IOException (The handle is invalid). If I remove the call insertASD() method thus not inserting into the database,I dont get the exception. Please help me in this regard.
|
Am not a pro and thats why am here!!!
|
 |
Edward Harned
Ranch Hand
Joined: Sep 19, 2005
Posts: 288
|
|
About the only thing I can say for certain is that this is not a Thread problem and you are in the wrong forum. Perhaps JDBC (since you're using resultSet) or I/O and Streams.
|
Ed's latest article: A Java Parallel Calamity http://coopsoft.com/ar/Calamity2Article.html
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24061
|
|
|
Off to JDBC.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: invalid Handle exception!!
|
|
|