Hi!<br>
<br>
I think there is no simply way to pass the original resultset to an applet.<br>
I advice you two sollutions:<br>
<br>
1. Write a Server application, which is listening a port, and wait for the<br>
Client(s) to connect. Invent an own protocol (Do the query, get result lines,<br>
close the connection, etc.). Run this on the server's JVM. Write a java applet<br>
client, that will connect the server (IP, Port) and realize the protocol, and<br>
show the result(s).<br>
Source: DBServer.java<br>
<br>
2. Write a Servlet (you have done it), and generate a standard HTML file<br>
(for example a TABLE), or an own data stream from the result (ResultSet).<br>
Write a client applet, that will realize the POST method, pass the variables,<br>
and then will read the servlet answer, and show it the required form (split<br>
fields, records from the HTML or datastream).<br>
Source: DBQueryServlet.java, DBQuery.html, DataFromSrvlToApplet.java,<br>
DataFromSrvlToApplet.html<br>
<br>
The sources was splitted my former try-outs, I hope them will help you.<br>
Ah, you can find the sources at my place

,
<br>
Bye, Otto.<br>