Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsolationLevel (0.14 sec)

  1. src/database/sql/driver/driver.go

    	PrepareContext(ctx context.Context, query string) (Stmt, error)
    }
    
    // IsolationLevel is the transaction isolation level stored in [TxOptions].
    //
    // This type should be considered identical to [database/sql.IsolationLevel] along
    // with any values defined on it.
    type IsolationLevel int
    
    // TxOptions holds the transaction options.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	// so unkeyed struct literals are a vet error. Thus, we don't
    	// want to allow sql.NamedArg{name, value}.
    	return NamedArg{Name: name, Value: value}
    }
    
    // IsolationLevel is the transaction isolation level used in [TxOptions].
    type IsolationLevel int
    
    // Various isolation levels that drivers may support in [DB.BeginTx].
    // If a driver does not support a given isolation level an error may be returned.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Tx).QueryRow", Method, 0},
    		{"(*Tx).QueryRowContext", Method, 8},
    		{"(*Tx).Rollback", Method, 0},
    		{"(*Tx).Stmt", Method, 0},
    		{"(*Tx).StmtContext", Method, 8},
    		{"(IsolationLevel).String", Method, 11},
    		{"(Null).Value", Method, 22},
    		{"(NullBool).Value", Method, 0},
    		{"(NullByte).Value", Method, 17},
    		{"(NullFloat64).Value", Method, 0},
    		{"(NullInt16).Value", Method, 17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top