我对多个参数有疑问,我无法使用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)
})
答案 0 :(得分:0)
由于查询不包含任何占位符(?
个字符),因此QueryRow
不应包含其他参数。也许删除多余的参数:
db.QueryRow("select SequenceID, MobilePhone, Output, WillBeSentDate, SentDate, Status, DtmUpd from SMSblast2 where SequenceID IS NOT NULL AND MobilePhone IS NOT NULL").Scan[...]