summaryrefslogtreecommitdiffhomepage
path: root/libs/luci-lib-nixio/axTLS/www/lua/prepara_sql2.lua
blob: 6a37c2fef7f37fc4fa51998ece3dc055f341ba35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/local/bin/lua

MAX_ROWS = arg[1] or 10

require"postgres"

local env = assert (luasql.postgres ())
local conn = assert (env:connect ("luasql-test", "tomas"))

-- Apaga restos de outros testes.
conn:execute "drop table t2"
conn:execute "drop table t1"

-- Criando as tabelas.
assert (conn:execute [[create table t1 (
	a int,
	b int
)]])
assert (conn:execute [[create table t2 (
	c int,
	d int
)]])

-- Preenchedo as tabelas.
for i = 1, MAX_ROWS do
	local ii = 2*i
	assert (conn:execute (string.format ([[
insert into t1 values (%d, %d);
insert into t2 values (%d, %d);]],
		ii, i, ii, i)))
end