You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							40 lines
						
					
					
						
							709 B
						
					
					
				
			
		
		
	
	
							40 lines
						
					
					
						
							709 B
						
					
					
				| package testfixtures
 | |
| 
 | |
| import (
 | |
| 	"database/sql"
 | |
| 	"path/filepath"
 | |
| )
 | |
| 
 | |
| // SQLite is the SQLite Helper for this package
 | |
| type SQLite struct {
 | |
| 	baseHelper
 | |
| }
 | |
| 
 | |
| func (*SQLite) paramType() int {
 | |
| 	return paramTypeQuestion
 | |
| }
 | |
| 
 | |
| func (*SQLite) databaseName(db *sql.DB) (dbName string) {
 | |
| 	var seq int
 | |
| 	var main string
 | |
| 	db.QueryRow("PRAGMA database_list").Scan(&seq, &main, &dbName)
 | |
| 	dbName = filepath.Base(dbName)
 | |
| 	return
 | |
| }
 | |
| 
 | |
| func (*SQLite) disableReferentialIntegrity(db *sql.DB, loadFn loadFunction) error {
 | |
| 	tx, err := db.Begin()
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	if _, err = tx.Exec("PRAGMA defer_foreign_keys = ON"); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	if err = loadFn(tx); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return tx.Commit()
 | |
| }
 | |
| 
 |