So this is what I have, I have a SQLite database with 3 tables: status,up_date & users. This database is on the server. I need to run following query on this:
SELECT USR.name, USR.cymer_id, ST.license
FROM
users USR,
status ST,
upd_ate UD
WHERE
UD.upt_id = (select max(p2.upt_id) from upd_ate p2)
AND ST.cymer_id = USR.cymer_id
AND ST.upt_id = UD.upt_id
ORDER BY USR.name
And then display the result on a webpage using HTML.
I was wondering is there any way to do this using java/javascript? or is there any way I can write a java/perl/javascript code to get a xml/text of the output and then display that?
Thanks for your help.