摘要: psql: 无法联接到服务器: 没有那个文件或目录 服务器是否在本地运行并且在 Unix 域套接字 "/var/run/postgresql/.s.PGSQL.5432"上准备接受联接? ubuntu@dongyang-K46CB:/$ sudo service postgresql startFa 阅读全文
posted @ 2017-04-05 23:47 cdongyang 阅读(5964) 评论(0) 推荐(0) 编辑
摘要: defer conn.Close() 要放在判err之后,因为err时conn为nil,然后nil.Close()会使程序出错,甚至直接panic崩调 defer执行匿名函数 1 package main 2 import "fmt" 3 func f1() (result int) { 4 pri 阅读全文
posted @ 2017-04-05 16:20 cdongyang 阅读(319) 评论(0) 推荐(0) 编辑