I am using offlineDB as Jaydata+Sqlite. I have created database,tables,fields and inserted the data too using Jaydata functions. Now I want that for some functionality I want to run sqlite queries for the same database tables.

Is it possible to do the same?
有帮助吗?

解决方案

Yes, it's possible. JayData isn't black magic, it provides a unified JavaScript API for all storage technologies. The API translates the JavaScript API to SQLite queries. If you don't modify the database schema in your native SQLite queries (so you use only CRUD your records) and don't want to run native queries and JayData operations at the same time, everything will work fine.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top