dongsaolian8786 2017-09-06 21:10
浏览 87
已采纳

如何使用golang sql在postgres中选择整个表格?

I'm fairly new to posgres and Go, but have been struggling for a while on this. I'm currently trying to send a query to retrieve everything from a table. When I try to use

SELECT * FROM land_registry_price_paid_uk

within postgres, it shows everything, but when I do the same using Query, I get.

sql: expected 16  destination arguments in Scan, not 1

This is the current code that I have.

fmt.Printf("user: %s, password: %s, dbName: %s", user, password, dbName)
connectionString := fmt.Sprintf("user=%s password=%s dbname=%s sslmode=%s", user, password, dbName, "disable")
var err error
a.DB, err = sql.Open("postgres", connectionString)
if err != nil {
    log.Fatal(err)
}
rows, err := a.DB.Query("SELECT ( * ) FROM land_registry_price_paid_uk")
if err != nil {
    log.Fatal(err)
}
defer rows.Close()
println(rows)
for rows.Next() {
    var name string
    if err := rows.Scan(&name); err != nil {
        log.Fatal(err)
    }
    fmt.Printf("this is something: %s
", name)

Any help is appreciated.

  • 写回答

2条回答 默认 最新

  • duannai5879 2017-09-06 21:25
    关注

    Looks like your query is working just fine, you are returning 16 columns of data and trying to scan them all into a single string variable, you will need to provide a holder variable for each column:

    var name string
    // vars to hold other column values go here
    
    // then reference vars in table order as args to row.Scan below
    if err := rows.Scan(&name); err != nil {
        log.Fatal(err)
    }
    

    if you have not used sql/go before you may also want to look into the special types provided for coping with nullable values as you will likely need these as well:

    NullString example

    Update:

    To further illustrate, say you had a three column table which consisted of the following fields:

    • id (int)
    • name (string)
    • optional_data (string, nullable)

    You might read the row as follows (not tested):

    var (
        id int 
        name string
        optionalData sql.NullString
    )
    
    if err := rows.Scan(&id, &name, &optionalData); err != nil {
        log.Fatal(err)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?