coresmart / persistencejs

persistence.js is an asynchronous Javascript database mapper library. You can use it in the browser, as well on the server (and you can share data models between them).
http://persistencejs.org
1.73k stars 240 forks source link

persistence.store.cordovasql.js #180

Open fdjean opened 8 years ago

fdjean commented 8 years ago

line 78:

return fn(persistence.db.websql.transaction(sqlt));

should be

return fn(persistence.db.sqliteplugin.transaction(sqlt));

already proposed: Fixing a bug where persistence.transaction would call websql instead of sqliteplugin https://github.com/coresmart/persistencejs/pull/179