登录
首页 >  Golang >  Go问答

Go和pgx:转换为文本不可行

来源:stackoverflow

时间:2024-02-11 10:12:25 494浏览 收藏

今日不肯埋头,明日何以抬头!每日一句努力自己的话哈哈~哈喽,今天我将给大家带来一篇《Go和pgx:转换为文本不可行》,主要内容是讲解等等,感兴趣的朋友可以收藏或者有更好的建议在评论提出,我都会认真看的!大家一起进步,一起学习!

问题内容

我是 golang 和 pgx 的新手,当我尝试运行简单的查询时遇到了问题。我在 postgres 中有下表。

create table users (
    user_id bigint primary key generated always as identity,
    phone_number text not null unique, 
);

当我尝试运行以下查询时:

func samplefunc(db dbclient){
    number := "+111111111"
    rows, err := db.query(context.background(), "select user_id from users where phone_number=$1::text;", number)
    if err != nil {
        log.println(err)
        return false, err
    }
}

我收到以下错误:无法将 [+111111111] 转换为文本。

编辑 2022 年 3 月 5 日

我应该注意,我将 pgxpool.pool 包装在我自己的结构中,并且由于某种原因,当我直接使用 pgxpool 时实际上没有问题。

type dbClient interface {
    Query(ctx context.Context, query string, args ...interface{}) (pgx.Rows, error)
}

type SQLClient struct {
    Conn *pgxpool.Pool
}

func (db *SQLClient) Query(ctx context.Context, query string, args ...interface{}) (pgx.Rows, error) {
    return db.Conn.Query(ctx, query, args)
}

我假设类型信息发生了一些问题,但仍然不知道如何修复它。

当我使用 fmt.println(reflect.typeof(args))sqlclient.query 中打印 args 类型信息时,我得到以下信息: []interface {}


正确答案


您忘记将 ... 添加到传递给 db.conn.query()args 参数。

func (db *SQLClient) Query(ctx context.Context, query string, args ...interface{}) (pgx.Rows, error) {
    return db.Conn.Query(ctx, query, args...)
}

The spec

I saw the same problem here

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Go和pgx:转换为文本不可行》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>