从 javascript 访问只读在线 SQLite
我想开发一个无需 Web 服务器即可提供服务的 Web 应用程序。我的意思是,通过网络浏览器中的 file:///... 。该应用程序将使用 HTML5 和 Javascript。另外,我想添加一个 SQLite,其中包含要在应用程序中呈现的数据。数据库将是静态的,因此只读访问就足够了。我不需要 HTML5 本地存储解决方案,因为 SQLite 数据库已经创建并且必须从“服务器”加载。
我找不到任何解决办法。伪代码示例可能如下:
var db = load ("file:///path/to/my/database/file.sqlite");
db.execute ("SELECT * FROM DATABASE");
// Show items
I want to develop an web application that can be served without web server. I mean, via file:///... in a web browser. The application will use HTML5 and Javascript. Also , I would like to add a SQLite with the data to be presented in the application. The database will be static so a read-only access is enough. I don't want a HTML5 local storage solution because the SQLite database is already created and must be load from "server".
I don't find any solution. A pseudocode example may be the following one:
var db = load ("file:///path/to/my/database/file.sqlite");
db.execute ("SELECT * FROM DATABASE");
// Show items
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从系统文件加载,我认为由于安全原因这是不可能的。
检查此在线工具来管理本地数据存储:http://wdbengine.sourceforge.net
load from the system files, I think this is not posible due to security reasons.
chek this online tool to manage local data storage at: http://wdbengine.sourceforge.net