We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go version go1.22.4 windows/amd64
v2.7.4
Option Yes
package main import ( pg "github.com/gogf/gf/contrib/drivers/pgsql/v2" "github.com/gogf/gf/v2/database/gdb" ) func main() { d := &pg.Driver{} db, err := d.Open(&gdb.ConfigNode{ Host: "192.168.0.1", Port: "5432", Pass: "test", Type: "pgsql", User: "postgres", Name: "test", }) if err != nil { panic(err) } err = db.Ping() if err != nil { panic(err) } }
panic: dial tcp [::1]:5432: connectex: No connection could be made because the target machine actively refused it.
No error
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Go version
go version go1.22.4 windows/amd64
GoFrame version
v2.7.4
Can this bug be reproduced with the latest release?
Option Yes
What did you do?
What did you see happen?
What did you expect to see?
No error
The text was updated successfully, but these errors were encountered: