在 Google chrome 扩展中从 sqlite db 访问数据
我正在此扩展中创建一个 Google chrome 扩展,我想访问(查询)来自“SqliteDb”的数据。SqliteDb 放置在 Temp 文件夹中。 我将如何做到这一点。请建议我。如果需要使用插件,请向我提供链接。
谢谢
I am creating a Google chrome Extension in this extension I want to access(query) data from "SqliteDb".The SqliteDb placed in Temp folder.
How will i do this.please suggest me.if have any need of using plugins then provide me link.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很困惑;对我来说,这似乎很明显。如果你想从 NPAPI 插件访问 sqlite(然后你可以从 chrome 扩展内部使用它),你需要嵌入 sqlite 库。
您应该没有理由不能在插件中使用普通的 C(或 C++)库来访问数据库。
I'm rather confused; to me this seems pretty obvious. If you want to access sqlite from a NPAPI plugin (which you can then use from inside a chrome extension) you need to embed the sqlite libary.
There should be no reason that you can't use normal C (or C++) libraries for database access from within your plugin.