whatcanGOwrong
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
//go:build go1.10
|
||||
// +build go1.10
|
||||
|
||||
package pq_test
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/lib/pq"
|
||||
)
|
||||
|
||||
func ExampleConnectorWithNoticeHandler() {
|
||||
name := ""
|
||||
// Base connector to wrap
|
||||
base, err := pq.NewConnector(name)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
// Wrap the connector to simply print out the message
|
||||
connector := pq.ConnectorWithNoticeHandler(base, func(notice *pq.Error) {
|
||||
fmt.Println("Notice sent: " + notice.Message)
|
||||
})
|
||||
db := sql.OpenDB(connector)
|
||||
defer db.Close()
|
||||
// Raise a notice
|
||||
sql := "DO language plpgsql $$ BEGIN RAISE NOTICE 'test notice'; END $$"
|
||||
if _, err := db.Exec(sql); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
// Output:
|
||||
// Notice sent: test notice
|
||||
}
|
||||
Reference in New Issue
Block a user