// urlExample := "postgres://username:password@localhost:5432/database_name"db,err:=sql.Open("pgx",os.Getenv("DATABASE_URL"))iferr!=nil{fmt.Fprintf(os.Stderr,"Unable to connect to database: %v\n",err)os.Exit(1)}deferdb.Close()
Open 函数会返回一个 *DB 类型的值,这个类型有很多方法,很多数据库的操作诸如查询、SQL语句执行等都会用到它。
// urlExample := "postgres://username:password@localhost:5432/database_name"conn,err:=pgx.Connect(context.Background(),os.Getenv("DATABASE_URL"))iferr!=nil{fmt.Fprintf(os.Stderr,"Unable to connect to database: %v\n",err)os.Exit(1)}deferconn.Close(context.Background())
age:=27q:=`create temp table uid (id bigint); -- Create temp table for queries.insert into uidselect id from users where age < ?; -- Populate temp table.-- First result set.selectusers.id, namefromusersjoin uid on users.id = uid.id;-- Second result set.select ur.user, ur.rolefromuser_roles as urjoin uid on uid.id = ur.user;`rows,err:=db.Query(q,age)iferr!=nil{log.Fatal(err)}deferrows.Close()forrows.Next(){var(idint64namestring)iferr:=rows.Scan(&id,&name);err!=nil{log.Fatal(err)}log.Printf("id %d name is %s\n",id,name)}if!rows.NextResultSet(){log.Fatalf("expected more result sets: %v",rows.Err())}varroleMap=map[int64]string{1:"user",2:"admin",3:"gopher",}forrows.Next(){var(idint64roleint64)iferr:=rows.Scan(&id,&role);err!=nil{log.Fatal(err)}log.Printf("id %d has role %s\n",id,roleMap[role])}iferr:=rows.Err();err!=nil{log.Fatal(err)}
id:=123varusernamestringvarcreatedtime.Timeerr:=db.QueryRowContext(ctx,"SELECT username, created_at FROM users WHERE id=?",id).Scan(&username,&created)switch{caseerr==sql.ErrNoRows:log.Printf("no user with id %d\n",id)caseerr!=nil:log.Fatalf("query error: %v\n",err)default:log.Printf("username is %q, account created on %s\n",username,created)}