Many Thank Rob
i have done following code for saving image
FileInputStream fis;
File file;
String str="";
file=new File("C:/Image/tra8.jpg");
fis=new FileInputStream(file);
str= "Insert into Image values(1,'"+(int)file.length()+"')";
db.execute(str);
System.out.println("insert successfully");
the above code is inserting image....i don't know the above code is right or not.. but it insert record in table;
but i am not understanding how to retrive image on JSP..
what to write in Action Class to retrive image and On jsp page...??