首页 > 解决方案 > 为什么我不能在golang中使用多个参数我的sql查询有什么问题?

问题描述

我有多个参数的问题,我无法用 sql 查询实现 2 个参数。我仍然收到错误,错误显示 mssql:'SequenceID' 附近的语法不正确。我的查询 sql 有什么问题,或者我的代码有什么问题?

package main

import (
    "database/sql"
    "fmt"
    _ "github.com/denisenkom/go-mssqldb"
    "github.com/gin-gonic/gin"
    "net/http"
    "time"
)

func main()  {
    db, err :=  sql.Open("sqlserver","sqlserver://sa:@localhost:1433?database=CONFINS&connection+timeout=30")
    if err != nil{
        fmt.Print(err.Error())
    }


err = db.Ping()

if err != nil {
    fmt.Print(err.Error())
}
defer db.Close()

type SMSBlast struct {
    SequenceID  int
    MobilePhone string
    Output  string
    WillBeSentDate *time.Time
    SentDate *time.Time
    Status *string
    DtmUpd *time.Time
}

router := gin.Default()

//Get a SMSBlast  detail
router.POST("/SMSBlast/:SequenceID", func(context *gin.Context) {
    var(
        smsblast SMSBlast
        result gin.H
    )

SequenceID := context.Param("SequenceID")
MobilePhone := context.Param("MobilePhone")

    err := db.QueryRow("select SequenceID, MobilePhone, Output, WillBeSentDate, SentDate, Status, DtmUpd from SMSblast2 where SequenceID  IS NOT NULL  AND MobilePhone IS NOT NULL  "+SequenceID , MobilePhone).Scan(&smsblast.SequenceID, &smsblast.MobilePhone, &smsblast.Output, &smsblast.WillBeSentDate, &smsblast.SentDate, &smsblast.Status, &smsblast.DtmUpd)
    //fmt.Println(row)
    fmt.Println(err)
    //err = row.Scan(&smsblast.SequenceID, &smsblast.MobilePhone, &smsblast.Output, &smsblast.WillBeSentDate, &smsblast.SentDate, &smsblast.Status, &smsblast.DtmUpd)
    if err != nil{
        //if no results send null
        result = gin.H{
            "result": nil,
            "count":  0,
        }
        }else{
            result = gin.H{
                "result" : smsblast,
                "count" : 1,
            }
        }

    context.JSON(http.StatusOK, result)
})

标签: sqldatabasego

解决方案


由于您的查询不包含任何占位符(?字符),因此QueryRow. 也许删除额外的参数:

db.QueryRow("select SequenceID, MobilePhone, Output, WillBeSentDate, SentDate, Status, DtmUpd from SMSblast2 where SequenceID  IS NOT NULL AND MobilePhone IS NOT NULL").Scan[...]

推荐阅读