You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			25 lines
		
	
	
		
			415 B
		
	
	
	
		
			Go
		
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			415 B
		
	
	
	
		
			Go
		
	
| 
											5 months ago
										 | // Package kb is a pure Go Kingbase driver for the database/sql package.
 | ||
|  | 
 | ||
|  | // +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris rumprun
 | ||
|  | 
 | ||
|  | package gokb | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"os" | ||
|  | 	"os/user" | ||
|  | ) | ||
|  | 
 | ||
|  | func userCurrent() (string, error) { | ||
|  | 	u, err := user.Current() | ||
|  | 	if err == nil { | ||
|  | 		return u.Username, nil | ||
|  | 	} | ||
|  | 
 | ||
|  | 	name := os.Getenv("USER") | ||
|  | 	if name != "" { | ||
|  | 		return name, nil | ||
|  | 	} | ||
|  | 
 | ||
|  | 	return "", ErrCouldNotDetectUsername | ||
|  | } |