在 javascript 中将 SQL 脚本从 SQL 文件注入到 sqlite 数据库中
我有一个 html 页面,它使用 openDatabase 函数创建 sqlite 数据库。
由于我有一个现有的大型 SQLite 数据库,我想知道是否可以将其导入到 Web 创建的 SQLite 数据库中,而不是将我的 sql 代码重复放入 transaction.executeSql
函数中?
PS:我发现
谢谢,
问候
I have an html page that creates an sqlite database using the openDatabase
function.
As I have an existing and large sqlite database, I wonder if I can import it into that web created sqlite database instead of putting my sql code in the transaction.executeSql
function repeatedly?
PS: I found this post but no code is shown and the method explained isn't so clear.
Thanks,
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不完全确定我是否正确理解了这个问题......但这里有一些可能会也可能不会回答你的问题(在谷歌浏览器中工作,不确定其他任何东西):
但是你提到了“网络创建”..这是否意味着像 PHP 这样的服务器端脚本?在我看来,您拥有导入数据库所需的 SQL,那么为什么不创建一个带有文本框的页面,让您粘贴 SQL,然后将其发布到数据库。如果这是在 PHP 中,那么它看起来会像这样:
在任何其他语言中想出等效的内容应该不会太难。如果您需要帮助,您知道在哪里寻求帮助! ;)
I'm not entirely sure if I've understood the question right... but here's something which may or may not answer your question (works in Google Chrome, not sure about anything else):
But you mentioned "web created"... does that mean with a server-side script like PHP? It sounds to me like you have the SQL necessary to import into the database, so why not just create a page with a text box that will let you paste the SQL in, and then post it to the db. If that's in PHP, then it would look something like this:
It shouldn't be too hard to come up with an equivalent in any other language. If you need help, you know where to ask! ;)