| 62 | } |
| 63 | |
| 64 | type InMemoryTestDatabase struct { |
| 65 | db *sqlx.DB |
| 66 | rowx *sqlx.Row |
| 67 | row *sql.Row |
| 68 | stmt *sqlx.Stmt |
| 69 | tx *sqlx.Tx |
| 70 | result sql.Result |
| 71 | queries []string |
| 72 | } |
| 73 | |
| 74 | func (imtd *InMemoryTestDatabase) DriverName() string { |
| 75 | return "sqlite3" |
nothing calls this directly
no outgoing calls
no test coverage detected