mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 06:38:37 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			798 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			798 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2016 The Xorm Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package builder
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| )
 | |
| 
 | |
| func (b *Builder) updateWriteTo(w Writer) error {
 | |
| 	if len(b.tableName) <= 0 {
 | |
| 		return errors.New("no table indicated")
 | |
| 	}
 | |
| 	if len(b.updates) <= 0 {
 | |
| 		return errors.New("no column to be update")
 | |
| 	}
 | |
| 
 | |
| 	if _, err := fmt.Fprintf(w, "UPDATE %s SET ", b.tableName); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	for i, s := range b.updates {
 | |
| 		if err := s.opWriteTo(",", w); err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 
 | |
| 		if i != len(b.updates)-1 {
 | |
| 			if _, err := fmt.Fprint(w, ","); err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if _, err := fmt.Fprint(w, " WHERE "); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return b.cond.WriteTo(w)
 | |
| }
 |