mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			538 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			538 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package mssql
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// SplitSQL is used to split a series of SQL statements
 | 
						|
func SplitSQL(sql string) []string {
 | 
						|
	parts := strings.Split(sql, ";")
 | 
						|
	out := make([]string, 0, len(parts))
 | 
						|
	for _, p := range parts {
 | 
						|
		clean := strings.TrimSpace(p)
 | 
						|
		if len(clean) > 0 {
 | 
						|
			out = append(out, clean)
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return out
 | 
						|
}
 | 
						|
 | 
						|
// Query templates a query for us.
 | 
						|
func Query(tpl string, data map[string]string) string {
 | 
						|
	for k, v := range data {
 | 
						|
		tpl = strings.Replace(tpl, fmt.Sprintf("{{%s}}", k), v, -1)
 | 
						|
	}
 | 
						|
 | 
						|
	return tpl
 | 
						|
}
 |