Sent: Tuesday, February 21, 2006 7:38 AM
> To: Tomcat Users List
> Subject: Servlet problem/Data Source Problem
>
>ResultSet rst = stmt.executeQuery("select id, chest from
> testdata");
you're missing this:
if (rst.next()) {
> blob = rst.getIn
David,
Thanks very much for the tips. I haven't yet got it in a package as I am
just using this for testing at the moment though I had managed to find out
about number 2 and 3 for myself. Thanks for the hint though.
Now I have another problem with the following code:
import java.io.*;
impo