mirror of https://github.com/jackc/pgx.git
39 lines
579 B
Go
39 lines
579 B
Go
package pgx_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/jackc/pgx"
|
|
)
|
|
|
|
func Example_JSON() {
|
|
conn, err := pgx.ConnectConfig(context.Background(), defaultConnConfig)
|
|
if err != nil {
|
|
fmt.Printf("Unable to establish connection: %v", err)
|
|
return
|
|
}
|
|
|
|
type person struct {
|
|
Name string `json:"name"`
|
|
Age int `json:"age"`
|
|
}
|
|
|
|
input := person{
|
|
Name: "John",
|
|
Age: 42,
|
|
}
|
|
|
|
var output person
|
|
|
|
err = conn.QueryRow("select $1::json", input).Scan(&output)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
|
|
fmt.Println(output.Name, output.Age)
|
|
// Output:
|
|
// John 42
|
|
}
|