gpt4 book ai didi

go - 如何在 Buffalo 中执行原始 SQL?

转载 作者:IT王子 更新时间:2023-10-29 02:09:23 24 4
gpt4 key购买 nike

如何在 Buffalo 中执行原始 SQL 查询,而不必使用 sqlx 建立自己的数据库连接?

澄清一下:我database.yml 中定义了我的数据库连接,但此时我不想使用 Pop 模型。

最佳答案

您还可以使用 Pop 定义 RawQueries:https://godoc.org/github.com/gobuffalo/pop#Connection.RawQuery

在你的 Buffalo Action 中你可以做这样的事情:

func (v myResource) MyMethod(c buffalo.Context) error {
// Get the DB connection from the context
tx, ok := c.Value("tx").(*pop.Connection) // you get your connection here
if !ok {
return errors.WithStack(errors.New("no transaction found"))
}
q := tx.RawQuery("select * from foo where id = ?", 1) // you make your query here
if err := q.All(model); err != nil {
return errors.WithStack(err)
}
}

这将是使用 Pop 而不是预定义模型的解决方案。在那种情况下,您只需使用 Buffalo 上下文附带的连接。

关于go - 如何在 Buffalo 中执行原始 SQL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51772322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com