DB contains information about the current database connection
| 44 | |
| 45 | // DB contains information about the current database connection |
| 46 | type DB struct { |
| 47 | Conn SQLCommon |
| 48 | Filepath string |
| 49 | } |
| 50 | |
| 51 | // Begin begins a transaction |
| 52 | func (d *DB) Begin() (*DB, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected