0

目前我有一个问题,我的 buffalo 应用程序无法写入我的 MySQL 数据库或从中读取。但在日志中没有发生错误。

我的 database.yml 文件

development:
  dialect: "mysql"
  database: "test_buff"
  host: "localhost"
  port: "3306"
  user: "root"
  password: "password"

工人.go

我用 POP 创建了这个模型。

type Worker struct {
ID        uuid.UUID `json:"id" db:"id"`
CreatedAt time.Time `json:"created_at" db:"created_at"`
UpdatedAt time.Time `json:"updated_at" db:"updated_at"`
Name      string    `json:"name" db:"name"`
Age       int   `json:"age" db:"age"`
Plz       string    `json:"plz" db:"plz"`

}

models.go(自动生成)

// DB is a connection to your database to be used
// throughout your application.
var DB *pop.Connection

func init() {
    var err error
    env := envy.Get("GO_ENV", "development")
    DB, err = pop.Connect(env)
    if err != nil {
        log.Fatal(err)
    }
    pop.Debug = env == "development"
}

回家

a := models.Worker{}
tx, ok := c.Value("tx").(*pop.Connection)
if !ok {
    //
}
tx.All(&a)

如果我使用另一个 mySql 驱动程序(不是 buffalo),它就可以工作。所以这可能是水牛框架的问题

与其他驱动程序编码

db, err := sql.Open("mysql", "root:password@/test_buff")
4

0 回答 0