Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for execInsert (0.13 sec)

  1. src/database/sql/fakedb_test.go

    			return nil, err
    		}
    		return driver.ResultNoRows, nil
    	case "INSERT":
    		return s.execInsert(args, true)
    	case "NOSERT":
    		// Do all the prep-work like for an INSERT but don't actually insert the row.
    		// Used for some of the concurrent tests.
    		return s.execInsert(args, false)
    	}
    	return nil, fmt.Errorf("fakedb: unimplemented statement Exec command type of %q", s.cmd)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top