doutan1905 2015-06-17 11:31
浏览 52
已采纳

如何在Gorp中使用TypeConverter?

I would like to use Gorp to load and save structs from the DB that contain specialised types. Amongst other things, this is useful for enumerated strings such as roles:

type Role string

type Account struct {
    User string
    Role Role
}

This doesn't work "out of the box". An error message is raised such as

panic: sql: converting Exec argument #0's type: unsupported type user.Role, a string

I suspect I need to use a gorp.TypeConverter to solve this, but there is no documentation on how to do this.

Can you help?

  • 写回答

1条回答 默认 最新

  • duanpai9945 2015-06-17 14:36
    关注

    Valuer and Scanner interfaces will do what you want. Here is a working example :

    package roleGorp
    
    import (
        "gopkg.in/gorp.v1"
        "github.com/DATA-DOG/go-sqlmock"
        "fmt"
        "testing"
        "database/sql/driver"
    )
    
    type Role string
    
    func (r *Role) Scan(value interface{}) error { *r = Role(value.(string)); return nil }
    func (r Role) Value() (driver.Value, error)  { return string(r), nil }
    
    type Account struct {
        User string `db:"user"`
        Role Role `db:"role"`
    }
    
    func TestRoleGorp(t *testing.T) {
        db, err := sqlmock.New()
        if err != nil {
            panic(err)
        }
        dbMap := gorp.DbMap{
            Db: db,
            Dialect: gorp.MySQLDialect{
                Engine: "InnoDB",
            },
        }
    
        rows := sqlmock.NewRows([]string{"user", "role"}).AddRow("user1", "admin")
    
        sqlmock.ExpectQuery(`SELECT \* FROM account LIMIT 1`).WillReturnRows(rows)
    
        dbMap.AddTableWithName(Account{}, "account")
    
        result := &Account{}
        err = dbMap.SelectOne(result, "SELECT * FROM account LIMIT 1")
        if err != nil {
            panic(err)
        }
    
        fmt.Printf("%+v
    ", *result)
    
        result2 := &Account{
            User: "user2",
            Role: Role("moderator"),
        }
    
        sqlmock.ExpectExec("insert into `account` \\(`user`,`role`\\) values \\(\\?,\\?\\);").WithArgs("user2", "moderator").WillReturnResult(sqlmock.NewResult(1, 1))
    
        err = dbMap.Insert(result2)
        if err != nil {
            panic(err)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ADS生成的微带线为什么是蓝色空心的
  • ¥15 求一下解题思路,完全不懂
  • ¥15 tensorflow
  • ¥15 densenet网络结构中,特征以cat方式复用后是怎么进行误差回传的
  • ¥15 STM32G471芯片spi设置了8位,总是发送16位
  • ¥15 R语言并行计算beta-NTI中tree文件的类型
  • ¥15 如何解读marsbar导出的ROI数据?
  • ¥20 求友友协助弄一下基于STC89C52单片机的声光控制灯原理图
  • ¥15 arduino双向交通灯设计
  • ¥15 有没有会粒子群算法的大能(○゜ε^○)求带不会出收敛图😭