You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
whenever i try to do transactions with beego orm in postgres database its failing and saying ...""""[ORM]2025/01/30 23:51:11 last insert id is unavailable 58 LastInsertId is not supported by this driver"""
here is code.
whenever i try to do transactions with beego orm in postgres database its failing and saying ...""""[ORM]2025/01/30 23:51:11 last insert id is unavailable 58 LastInsertId is not supported by this driver"""
here is code.
func (um *UserManager) CreateUser() (*User, error) {
o := orm.NewOrm()
err := o.DoTx(func(ctx context.Context, txOrm orm.TxOrmer) error {
hashedPassword, err := hashPassword(um.User.Password)
}
The text was updated successfully, but these errors were encountered: