I am using JDK1.3 with Oracle Driver for JDBC connection
The sample i am using is given below:
// MyTable Desc
fname varchar2(50)
MyFile BLOB
// Statement stat = <connection done>;
ResultSet rs = stat.executeQuery("select fname from MyTable");
------ This works properly -------------
But when i use
// Statement stat = <connection done>;
ResultSet rs = stat.executeQuery("select * from MyTable");
It says java.sql.Exception : GeneralError
Pls give a solution for this.