使用 Javascript 的 Phonegap-Android-sqlite。如何连接?
我是 Android-Phonegap 开发新手。我正在 Windows XP 中使用 Eclipse 创建一个项目。 我正在使用 sqlite 数据库。我看到了文档中的示例代码。但我无法执行这个例子。我没有得到所需的结果。
假设我想以表格格式 HTML 获取表演示中的所有条目。 index.html 中的代码是什么?为此,程序是什么?执行此操作的步骤是什么?或者还有什么更好的教程可以帮助我做到这一点?
预先感谢
Dnyan。
I am new to Android-Phonegap dev. I am creating a project using Eclipse in Windows XP.
I am using sqlite database. I saw the sample code in the docs. But I'm not able to execute this example. I am not getting the required results.
Suppose I want to get all the entries in the table demo in tabular format, HTML. What will the code be in index.html? For that, what is the procedure and what is the step by step procedure for doing this? Or else any better tutorials which help me to do this?
Thanks in Advance
Dnyan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 main.js 中,您将其添加
到 index.html 中,您将这一行添加到正文中
in main.js you add this
in index.html you add this row inside body
需要记住的一件事是,如果您不是在设备或模拟器上测试应用程序,而是在 Chrome 或 Safari 等浏览器中测试应用程序,则该应用程序
将无法工作。我所做的就是注释掉这一行,然后调用
当我然后在模拟器中测试时,我取消注释“文档...”行并注释掉
One thing to bear in mind is that if you aren't testing the application on a device or in an emulator, but rather in a browser like Chrome or Safari,
won't work. What I've done is to comment out this line and just to put in a call to
When I then test in the emulator I uncomment the "document…" line and comment out
这是使用javascript连接数据库的方法
SQL语句错误回调参考
this is the method to connect to a db using javascript
SQL Statement Error Callback Reference