这是我的脚本
#!/usr/bin/env ruby
require 'sqlite3'
print "Content-type: text/html\r\n\r\n"
print "<html><body>Hello Stack Overflow<p></body></html>\r\n"
database = SQLite3::Database.new( "new.database" )
database.execute( "create table new_table (id INTEGER PRIMARY KEY, content TEXT);" )
database.execute( "insert into new_table (content) values ('this is a stack')")
database.execute( "insert into new_table (content) values ('this is overflow')")
rows = database.execute( "select * from new_table" )
p rows
这有效,但在一行中打印行。我想添加一个换行符,但我不知道如何。html标签
不起作用,\n 也没有。
你能帮我吗?