문제

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