建立一个全局的mysql 数据连接,可在不同的goroutine 里共享
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
package main
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
"github.com/gorilla/mux"
"log"
"net/http"
)
var db *sql.DB // 在这里建立一个全局变量,可在main 函数和 HTTP handler 里调用
func main() {
fmt.Println("starting up")
var err error
db, err = sql.Open("mysql", "root@unix(/tmp/mysql.sock)/mydb") // this does not really open a new connection
if err != nil {
log.Fatalf("Error on initializing database connection: %s", err.Error())
}
db.SetMaxIdleConns(100)
err = db.Ping() // This DOES open a connection if necessary. This makes sure the database is accessible
if err != nil {
log.Fatalf("Error on opening database connection: %s", err.Error())
}
r := mux.NewRouter()
r.HandleFunc("/", HomeHandler)
http.Handle("/", r)
http.ListenAndServe(":8080", nil)
}
func HomeHandler(w http.ResponseWriter, r *http.Request) {
var msg string
err := db.QueryRow("SELECT msg FROM hello WHERE page=?", "home").Scan(&msg)
if err != nil {
fmt.Fprintf(w, "Database Error!")
} else {
fmt.Fprintf(w, msg)
}
}
本文网址: https://golangnote.com/topic/61.html 转摘请注明来源