Comments on: SQL Emulation Tool in Javascript http://www.terminally-incoherent.com/blog/2009/05/12/sql-emulation-tool-in-javascript/ I will not fix your computer. Tue, 04 Aug 2020 22:34:33 +0000 hourly 1 https://wordpress.org/?v=4.7.26 By: leebert http://www.terminally-incoherent.com/blog/2009/05/12/sql-emulation-tool-in-javascript/#comment-16915 Fri, 20 Aug 2010 16:07:09 +0000 http://www.terminally-incoherent.com/blog/?p=3057#comment-16915

Hmmm.

Well, there’s sqlite, but I don’t know if javascript can talk to it from within the browser sandbox, even w/ jquery.

There’s the Perl lib SQL:Statement, which entails full source code, maybe it could be ported to javascript?

http://search.cpan.org/~rehsack/SQL-Statement-1.30/lib/SQL/Statement.p m

Reply  |  Quote
]]>
By: ths http://www.terminally-incoherent.com/blog/2009/05/12/sql-emulation-tool-in-javascript/#comment-12291 Wed, 13 May 2009 06:24:38 +0000 http://www.terminally-incoherent.com/blog/?p=3057#comment-12291

apart from hacking fun why don’t you just use a real database that runs everywhere?
Apache Derby only requires a JRE, and it’s got nice full SQL capabilities.
In fact mostly it’s DB2 revamped in Java ;)
I like it very much for embedding database functionality in standalone projects.

Reply  |  Quote
]]>
By: Luke Maciak http://www.terminally-incoherent.com/blog/2009/05/12/sql-emulation-tool-in-javascript/#comment-12290 Tue, 12 May 2009 19:51:31 +0000 http://www.terminally-incoherent.com/blog/?p=3057#comment-12290

Aw, crap… My project is no longer fresh and innovative. Thanks a lot! :(

On the upside it seems like have a place to go to steal code and features now. :)

Btw – I got my code to a usable condition last night, so I might upload a working demo and the code here somewhere.

Reply  |  Quote
]]>
By: Chris Wellons http://www.terminally-incoherent.com/blog/2009/05/12/sql-emulation-tool-in-javascript/#comment-12289 Tue, 12 May 2009 19:33:33 +0000 http://www.terminally-incoherent.com/blog/?p=3057#comment-12289

Poking around the Intertubes brought me to this discussion by a guy that is doing the same thing you are doing. He was looking for a Javascript parser generator, which was my first thought (and how I found it).

And that discussion led to TrimQuery which seems like exactly what you are trying to do. And it’s GPL’ed too.

Reply  |  Quote
]]>