-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_showPersons.go
57 lines (48 loc) · 1.24 KB
/
mod_showPersons.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package main
import (
"database/sql"
"fmt"
_ "github.com/mattn/go-sqlite3"
"html/template"
"net/http"
)
func showPersons(w http.ResponseWriter, r *http.Request) {
//this must add at begin of every session code
c, err := r.Cookie("session")
if err != nil || c.Value == "" {
http.Error(w, "Session expired", 401)
return
}
//build page content
b := `<p>This is a module that show a list of persons from a database`
db, _ := sql.Open("sqlite3", "./foo.db")
defer db.Close()
rows, err := db.Query("select id, name, age, address from person")
if err != nil {
println(err.Error())
return
}
defer rows.Close()
var name, address string
var id, age int
b += `<table width="500">
<tr><td>Id</td><td>Name</td><td>Age</td><td>Address</td></tr>
<tr><td colspan=4><hr></td></tr>`
for rows.Next() {
rows.Scan(&id, &name, &age, &address)
b += fmt.Sprintf("<tr><td>%d</td><td>%s</td><td>%d</td><td>%s</td></tr>", id, name, age, address)
}
b += `<tr><td colspan=4><hr></td></tr>
</table>`
b += `<a href="/index">OK</a>`
//finally show the page
p := Page{
Title: "Show persons page",
Status: c.Value,
Body: template.HTML(b),
}
t.ExecuteTemplate(w, "index.html", p)
}
func init() {
http.HandleFunc("/showPersons", showPersons)
}