如何在布法罗执行原始 SQL?



如何在布法罗执行原始SQL查询,而无需与sqlx建立自己的数据库连接?

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

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

。在你的布法罗行动中,你可以做这样的事情:

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 而不是预定义模型的解决方案。在这种情况下,您只需使用布法罗上下文附带的连接。

相关内容

  • 没有找到相关文章

最新更新