This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Original: A simple stratified wrapper over the asynchronous webdatabase api (webkit) | |
from http://gist.github.com/613526 | |
Existing openDatabase and executeSql methods | |
Added executeBulkSql as a method to group sql statements prior to transaction-level commit; | |
this is much faster for bulk transactions as opposed to individual transaction executions | |
from http://gist.github.com/927981 | |
*/ |