Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for driverConn (0.34 sec)

  1. src/database/sql/sql.go

    type connStmt struct {
    	dc *driverConn
    	ds *driverStmt
    }
    
    // stmtConnGrabber represents a Tx or Conn that will return the underlying
    // driverConn and release function.
    type stmtConnGrabber interface {
    	// grabConn returns the driverConn and the associated release function
    	// that must be called when the operation completes.
    	grabConn(context.Context) (*driverConn, releaseConn, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	}
    
    	if n := len(dc.openStmt); n != 1 {
    		t.Errorf("driverConn num openStmt = %d; want 1", n)
    	}
    	err = db.Close()
    	if err != nil {
    		t.Errorf("db Close = %v", err)
    	}
    	if !dc.closed {
    		t.Errorf("after db.Close, driverConn should be closed")
    	}
    	if n := len(dc.openStmt); n != 0 {
    		t.Errorf("driverConn num openStmt = %d; want 0", n)
    	}
    
    	err = stmt.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top