mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 15:42:26 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package dialect
 | |
| 
 | |
| type Name int
 | |
| 
 | |
| func (n Name) String() string {
 | |
| 	switch n {
 | |
| 	case PG:
 | |
| 		return "pg"
 | |
| 	case SQLite:
 | |
| 		return "sqlite"
 | |
| 	case MySQL:
 | |
| 		return "mysql"
 | |
| 	case MSSQL:
 | |
| 		return "mssql"
 | |
| 	default:
 | |
| 		return "invalid"
 | |
| 	}
 | |
| }
 | |
| 
 | |
| const (
 | |
| 	Invalid Name = iota
 | |
| 	PG
 | |
| 	SQLite
 | |
| 	MySQL
 | |
| 	MSSQL
 | |
| )
 |