如何使用 Ruby 从 SQLite3 数据库中提取数据并将其输出为静态 HTML?
我想编写一个脚本,从本地 SQLite3 数据库检索数据,然后将该数据格式化为 HTML 文件。
我不确定要使用什么“工具”,但我想我需要 sqlite3 gem,然后我正在考虑使用 Sinatra 来处理 HTML 位。
更新:我不想创建网络服务。我只想运行一个以 sqlite3 数据库作为输入的 Ruby 脚本,并提取一组特定的数据,然后将其格式化并输出为单个文件。我提到了 HTML,但任何像 Markdown 这样的东西都很棒,因为它可以以您想要的任何格式导出。
I want to write a script that retrieves data from a local SQLite3 database and then formats that data into an HTML file.
I'm not sure what "tools" to use, but I guess I'll need the sqlite3 gem and then I was thinking about using Sinatra for the HTML bit.
UPDATE: I'm not looking to create a web service. I just want to run a Ruby script with an sqlite3 database as input and extract a specific set of data, which I then want to format and output as a single file. I mentioned HTML, but anything like markdown would be great as this can then be exported in what ever format you want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不需要
http
协议,我建议使用模板语言,例如 哈姆尔:If you don't need
http
protocol I would suggest using template language, e.g. haml:我喜欢您选择 Sinatra 作为 Web 应用程序,并建议使用 Sequel 作为数据库适配器。这是一个简短的、未经测试的应用程序:
home.haml
post.haml
对 Sinatra、Sequel 或 Haml 的完整介绍超出了 Stack Overflow 的范围。希望这能让你开始。
I like your choice of Sinatra for the web app and suggest Sequel for the database adapter. Here's a short, untested app:
home.haml
post.haml
A full introduction to Sinatra, Sequel, or Haml is outside the scope of Stack Overflow. Hope this gets you started.