当前,我遇到了问题,我的Buffalo应用程序无法写入我的MySQL数据库或无法读取它。但是在日志中没有发生错误。
我的database.yml文件
development:
dialect: "mysql"
database: "test_buff"
host: "localhost"
port: "3306"
user: "root"
password: "password"
worker.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"
}
home.go
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")