Hi Jason,
I really should set up a Wiki for JSDB. In the meantime, here's what
you do.
s = new SQLite('myfile.db')
s.exec('create table foobar (name, email')
s.exec('insert into foobar (name, email) values (' + s.escape('Jason')
+ ',' + s.escape('jason@foobar,com') + ')')
s.exec('select * from foobar', function(record) {writeln(record.get
('name'),record.get('email')})
s.close()
On Sep 17, 11:51 am, Jason S <
jmsa...@gmail.com> wrote:
> How do you do SQLite queries? I don't see it in the helphttp://
www.jsdb.org/jsdbhelp.html#SQLite, just a mention about