I created an oracle object. Created a java class that implements java.sql.SQLData. By overriding the writeSQL method I was able to pass to the data base the object. The reverse did not work.
When I tried to retreive the sql array and subsequently the object out of the array (casted as "Sample") the following exeception occurs java.sql.SQLException: Inconsistent java and sql object types Can anyone give some pointer to the possible solution. thanks Prashanth
Prashanth menon
Ranch Hand
Joined: Feb 20, 2001
Posts: 65
posted
0
Ok I got rid of the exception now. It was because I had missed out on the default constructor. Prashanth