英文:
golang database/sql using pq
问题
我正在遇到这个问题
db, err := sql.Open("postgres", "user=xxx dbname=xxx connect_timeout=5 sslmode=disable")
if err != nil {
log.Fatal(err)
}
我在本地主机上没有安装postgres,所以sql.Open应该返回一些错误,但实际上直到我尝试准备一个查询并最终得到一个连接被拒绝的错误之前,它并没有返回错误。
stmt, err := c.DB.Prepare("SELECT id FROM services WHERE name = $1")
if err != nil {
log.Fatal(err)
}
这是预期的行为吗?还是我漏掉了什么...
英文:
I'm having this issue
db, err := sql.Open("postgres", "user=xxx dbname=xxx connect_timeout=5 sslmode=disable")
if err != nil {
log.Fatal(err)
}
I have no postgres installed on my localhost so sql.Open should return some error but actually it is not until I try to prepare a query and finally I get a connection refused error
stmt, err := c.DB.Prepare("SELECT id FROM services WHERE name = $1")
if err != nil {
log.Fatal(err)
}
is this an expected behaviour? or I'm missing something...
答案1
得分: 3
根据这个链接,是的,这是一种预期的行为。Open()函数不会直接打开与数据库的连接。实际上,只有在第一次使用数据库时才会打开第一个连接。
Open()函数可能只是验证其参数而不创建与数据库的连接。要验证数据源名称是否有效,请调用Ping()函数。
使用Ping()函数来检查连接是否有效。
英文:
According to this, Yes it is an expected behavior. Open() does not directly open a connection to the database.
Instead the first connection is opened when the database is actually used the first time.
Open may just validate its arguments without creating a connection
to the database.
To verify that the data source name is valid, call Ping.
Use Ping() to check if the connection is valid or not.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论