type contrib.go.opencensus.io/integrations/ocsql.ocStmt

11 uses

	contrib.go.opencensus.io/integrations/ocsql (current package)
		driver.go#L37: 	_ driver.Stmt                           = &ocStmt{}
		driver.go#L38: 	_ driver.StmtExecContext                = &ocStmt{}
		driver.go#L39: 	_ driver.StmtQueryContext               = &ocStmt{}
		driver.go#L475: type ocStmt struct {
		driver.go#L481: func (s ocStmt) Exec(args []driver.Value) (res driver.Result, err error) {
		driver.go#L520: func (s ocStmt) Close() error {
		driver.go#L524: func (s ocStmt) NumInput() int {
		driver.go#L528: func (s ocStmt) Query(args []driver.Value) (rows driver.Rows, err error) {
		driver.go#L566: func (s ocStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (res driver.Result, err error) {
		driver.go#L605: func (s ocStmt) QueryContext(ctx context.Context, args []driver.NamedValue) (rows driver.Rows, err error) {
		driver_go1.10.go#L85: 	s := ocStmt{parent: stmt, query: query, options: options}