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

如何使用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 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)