gpt4 book ai didi

sql - 向 postgres 查询添加查询参数时出错

转载 作者:数据小太阳 更新时间:2023-10-29 03:13:46 25 4
gpt4 key购买 nike

当我写代码时:

err := database.QueryRow("SELECT page_title,page_content,page_date FROM pages WHERE id=1").
Scan(&thisPage.Title, &thisPage.Content, &thisPage.Date)

一切正常。但我希望它不只是获取带有 id=1 的页面,而是动态的。

所以我写:

err := database.QueryRow("SELECT page_title,page_content,page_date FROM pages WHERE id=?", pageID).
Scan(&thisPage.Title, &thisPage.Content, &thisPage.Date)

但是我得到一个错误:

GolangdProjects go run test.go  
1
2017/04/13 11:29:57 Couldn't get page: 1
exit status 1

完整代码:

package main

import (
"database/sql"
"fmt"
_ "github.com/lib/pq"
"github.com/gorilla/mux"
"log"
"net/http"
)

const (
DBHost = "localhost"
DBPort = ":5432"
DBUser = "nirgalon"
DBPass = ""
DBDbase = "cms"
PORT = ":8080"
)

var database *sql.DB

type Page struct {
Title string
Content string
Date string
}

func ServePage(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
pageID := vars["id"]
thisPage := Page{}
fmt.Println(pageID)
err := database.QueryRow("SELECT page_title,page_content,page_date FROM pages WHERE id=1").Scan(&thisPage.Title, &thisPage.Content, &thisPage.Date)
if err != nil {
log.Fatal("Couldn't get page: " + pageID)
log.Fatal(err.Error)
}
html := `<html><head><title>` + thisPage.Title + `</title></head><body><h1>` + thisPage.Title + `</h1><div>` + thisPage.Content + `</div></body></html>`
fmt.Fprintln(w, html)
}

func main() {
db, err := sql.Open("postgres", "user=nirgalon dbname=cms sslmode=disable")
if err != nil {
log.Println("Couldn't connnect to db")
log.Fatal(err)
}
database = db

routes := mux.NewRouter()
routes.HandleFunc("/page/{id:[0-9]+}", ServePage)
http.Handle("/", routes)
http.ListenAndServe(PORT, nil)
}

最佳答案

psql 驱动程序使用 $1$2 等作为参数:

database.QueryRow("SELECT page_title,page_content,page_date FROM pages WHERE id = $1", pageID)

关于sql - 向 postgres 查询添加查询参数时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43387383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com