I need to run an SQL query in a webpage and display the results in an HTML table. I'd like to keep this to JavaScript if possible. Just as a for instance, say I have a query:
SELECT * FROM TestTable
I want to display the results in an HTML table. Is there a way that I can dynamically draw a table that will scale to the size of the results?
Thanks!