Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cachedOrNewConn (0.14 sec)

  1. src/database/sql/sql.go

    const (
    	// alwaysNewConn forces a new connection to the database.
    	alwaysNewConn connReuseStrategy = iota
    	// cachedOrNewConn returns a cached connection, if available, else waits
    	// for one to become available (if MaxOpenConns has been reached) or
    	// creates a new database connection.
    	cachedOrNewConn
    )
    
    // driverConn wraps a driver.Conn with a mutex, to
    // be held during all calls into the Conn. (including any calls onto
    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

    	ctx := context.Background()
    
    	conn0, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn1, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    	conn2, err := db.conn(ctx, cachedOrNewConn)
    	if err != nil {
    		t.Fatalf("db open conn fail: %v", err)
    	}
    
    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