I need some sort of javascript lo开发者_如何学Cop to show all the contents of a local sqlite database in browser.
Database is created and populated already by other javascript code in some other page, so no need to create db, just open the connection, and display all rows in some sort of while loop.
so far I got:
var db = openDatabase("Users");
This is what you need : http://code.google.com/p/javascript-client-side-sqlite3-wrapper/
精彩评论