Skip to content

Latest commit

 

History

History
 
 

oracle

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

pporacle

This package instruments the sijms/go-ora/v2 package.

Installation

$ go get github.com/pinpoint-apm/pinpoint-go-agent/plugin/oracle
import "github.com/pinpoint-apm/pinpoint-go-agent/plugin/oracle"

Usage

PkgGoDev

This package instruments the Oracle driver calls. Use this package's driver in place of the Oracle driver.

db, err := sql.Open("oracle-pinpoint", "oracle://scott:tiger@localhost:1521/xe")

It is necessary to pass the context containing the pinpoint.Tracer to all exec and query methods on SQL driver.

ctx := pinpoint.NewContext(context.Background(), tracer)
row, err := db.QueryContext(ctx, "SELECT * FROM BONUS")
import (
    "database/sql"
    "github.com/pinpoint-apm/pinpoint-go-agent"
    _ "github.com/pinpoint-apm/pinpoint-go-agent/plugin/oracle"
)

func query(w http.ResponseWriter, r *http.Request) {
    conn, err := sql.Open("oracle-pinpoint", "oracle://scott:tiger@localhost:1521/xe")
    rows, _ := conn.QueryContext(r.Context(), "SELECT * FROM BONUS")

    for rows.Next() {
        err = rows.Scan(&ename, &job, &sal, &comm)
        fmt.Println("ENAME: ", ename, "\tJOB: ", job, "\tSAL: ", sal, "\tCOMM: ", comm)
    }
}

Full Example Source