Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用离线数据库作为 Jaydata+Sqlite。我也使用 Jaydata 函数创建了数据库、表、字段并插入了数据。现在我想要一些功能,我想对相同的数据库表运行 sqlite 查询。
Is it possible to do the same?
是的,这是可能的。JayData 不是黑魔法,它为所有存储技术提供了统一的 JavaScript API。该 API 将 JavaScript API 转换为 SQLite 查询。如果您不修改本机 SQLite 查询中的数据库架构(因此您只使用 CRUD 您的记录)并且不想同时运行本机查询和 JayData 操作,那么一切都会正常工作。