Skip to content

Commit 37a7064

Browse files
author
Rodolfo Rodriguez
authored
defer db connection close
1 parent e9ca7b3 commit 37a7064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/05.2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ The following example shows how to operate on a database based on the `database/
3939

4040
func main() {
4141
db, err := sql.Open("mysql", "astaxie:astaxie@/test?charset=utf8")
42+
defer db.Close()
4243
checkErr(err)
4344

4445
// insert
@@ -93,7 +94,6 @@ The following example shows how to operate on a database based on the `database/
9394

9495
fmt.Println(affect)
9596

96-
db.Close()
9797

9898
}
9999

0 commit comments

Comments
 (0)