mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
5 lines
133 B
Lua
5 lines
133 B
Lua
|
-- See .init.lua for CREATE TABLE setup.
|
||
|
for row in db:nrows("SELECT * FROM test") do
|
||
|
Write(row.id.." "..row.content.."<br>")
|
||
|
end
|