1 回答
TA贡献1802条经验 获得超5个赞
您可以使用 将上下文作为参数。BeginTx(ctx context.Context, opts *sql.TxOptions)
这里有一个小例子:
import (
"context"
"fmt"
"os"
"os/signal"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres"
)
func main() {
db, err := gorm.Open("postgres", "host=localhost port=5432 user=gorm dbname=gorm password=mypassword sslmode=disable")
if err != nil {
panic(err)
}
defer db.Close()
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
defer func() {
signal.Stop(c)
cancel()
}()
go func() {
select {
case <-c:
cancel()
case <-ctx.Done():
}
}()
transaction, err := db.DB().BeginTx(ctx, nil)
_, err = transaction.Exec("SELECT pg_sleep(100)")
if err != nil {
fmt.Println(err.Error())
}
}
- 1 回答
- 0 关注
- 83 浏览
添加回答
举报