Hi,
Here is what I am trying to do:
In servlet:
1. Get queries from an applet.
2. Do the queries against SQL Server and return a QueryDataSet to the
Applet.
In Applet:
1. Request a QueryDataSet.
2. Display QueryDataSet in a JdbTable. (Only show rows, no updates)
I got everything to work with a direct socket connection, but using the
servlet is giving me a trouble. Also I could return the data with
String[][], but it might be a little harder.. :)
If anybody knew of a good tutorial about the subject I would be pleased
to hear about it!
Best Regards,
Mika Myllyvirta
Mika Myllyvirta - 13 Oct 2005 07:51 GMT
After a while (two days) of searching and searching docs and the web, I
found a solution that worked..
In servlet:
Execute QueryDataSet and load it into DataSetData and send it to applet.
In Applet:
Get the DataSetData object and load it into TableDataSet and show it in
a jdbTable.
> Hi,
>
[quoted text clipped - 18 lines]
> Best Regards,
> Mika Myllyvirta