()
| 55 | } |
| 56 | |
| 57 | func (db *SQLite) CloseDatabaseReference() { |
| 58 | db.GetDatabaseReference().Close() |
| 59 | db.Database = nil |
| 60 | } |
| 61 | |
| 62 | func (db *SQLite) SetDatabaseReference(dbPath string) { |
| 63 | database := GetDatabaseForFile(dbPath) |
nothing calls this directly
no test coverage detected