使用 gorp 如何有效地插入多条记录?即不是一次插入一个,是否有批量插入?
var User struct {
Name string
Email string
Phone string
}
var users []Users
users = buildUsers()
dbMap.Insert(users...) //this fails compilation
//I am forced to loop over users and insert one user at a time. Error Handling omitted for brevity
gorp有更好的机制吗?驱动程序是 MySQL。