aaronpowell / db.js

db.js is a wrapper for IndexedDB to make it easier to work against
http://aaronpowell.github.com/db.js/
MIT License
820 stars 142 forks source link

No way to connect to an existing Sqlite DB? #190

Open CodeSpent opened 5 years ago

CodeSpent commented 5 years ago

Excuse me if I'm missing this, but is there no support for connecting to already established databases?

brettz9 commented 5 years ago

It can connect to already established IndexedDB databases... As far as WebSQL (if that's what you mean by SQLite), this standard is deprecated, but if you need support for such older browsers, you can try https://github.com/axemclion/IndexedDBShim (and if you mean SQLite for Node, then the latter can work with such databases as well). See the issues list for the latter though for some outstanding issues we're currently working on.